jelly-tags/jface/src/main/java/org/apache/commons/jelly/tags/jface/impl/ApplicationWindowImpl.java [29:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class ApplicationWindowImpl extends ApplicationWindow {

    /**
     * @param shell
     */
    public ApplicationWindowImpl(Shell shell) {

        super(shell);

        // 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();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jelly-tags/jface/src/main/java/org/apache/commons/jelly/tags/jface/window/ApplicationWindowImpl.java [29:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class ApplicationWindowImpl extends ApplicationWindow {

    /**
     * @param shell
     */
    public ApplicationWindowImpl(Shell shell) {

        super(shell);

        // 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();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



