Package org.eclipse.jface.dialogs

Examples of org.eclipse.jface.dialogs.PopupDialog$PersistBoundsAction


        display = Workbench.getInstance().getDisplay();
        display.syncExec(new Runnable() {
            @Override
            public void run() {
                dialog = new PopupDialog(new Shell(display), PopupDialog.INFOPOPUPRESIZE_SHELLSTYLE, false, true, true, true, false, "Errors in running OSGi Framework", "") {
                    @Override
                    protected Control createDialogArea(Composite parent) {
                        textArea = new Text(parent, SWT.LEAD | SWT.READ_ONLY | SWT.WRAP);
                        return textArea;
                    }
View Full Code Here


    window = HandlerUtil.getActiveWorkbenchWindow(executionEvent);
    if (window == null) {
      return null;
    }

    final PopupDialog popupDialog = new QuickAccessDialog(window, executionEvent.getCommand());
    popupDialog.open();
    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jface.dialogs.PopupDialog$PersistBoundsAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.