Package org.eclipse.ui.internal.dialogs

Examples of org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog


        if (persp == null) {
      return false;
    }

        // Create list dialog.
        CustomizePerspectiveDialog dlg = window.createCustomizePerspectiveDialog(persp);
       
        // Open.
        boolean ret = (dlg.open() == Window.OK);
        if (ret) {
            window.updateActionSets();
            window.firePerspectiveChanged(this, getPerspective(), CHANGE_RESET);
            window.firePerspectiveChanged(this, getPerspective(),
                    CHANGE_RESET_COMPLETE);
View Full Code Here


   * @return a new perspective customization dialog
   * @since 3.1
   */
  public CustomizePerspectiveDialog createCustomizePerspectiveDialog(
      Perspective persp) {
    return new CustomizePerspectiveDialog(getWindowConfigurer(), persp);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog

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.