blob: e103c63bec01242d79e8435b3c64c62e6ccdfe41 [file] [log] [blame]
package groovy.jface.impl;
import org.eclipse.jface.window.ApplicationWindow;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
/**
* This is the default implementation for a ApplicationWindow
*
* @author <a href="mailto:ckl@dacelo.nl">Christiaan ten Klooster</a>
*/
public class ApplicationWindowImpl extends ApplicationWindow {
/**
* @param shell
*/
public ApplicationWindowImpl(Shell parentShell) {
super(parentShell);
// default at all
addMenuBar();
addStatusLine();
addToolBar(SWT.NULL);
setBlockOnOpen(true);
// create window
create();
}
/*
* override to make public
*
* @see org.eclipse.jface.window.Window#getContents()
*/
public Control getContents() {
return super.getContents();
}
}