Package org.eclipse.jface.wizard

Examples of org.eclipse.jface.wizard.WizardDialog


    if (wizardDialogSettings == null) {
      wizardDialogSettings = pluginDialogSettings
          .addNewSection(settingsKey);
    }
    wizard.setDialogSettings(wizardDialogSettings);
    WizardDialog dialog = new WizardDialog(shell, wizard);
    dialog.create();
    dialog.getShell().setSize(Math.max(500, dialog.getShell().getSize().x),
        500);
    dialog.open();
  }
View Full Code Here


     * @generated
     */
    public void run(IAction action) {
      OntoUML.diagram.part.OntoUMLCreationWizard wizard = new OntoUML.diagram.part.OntoUMLCreationWizard();
      wizard.init(getWindow().getWorkbench(), StructuredSelection.EMPTY);
      WizardDialog wizardDialog = new WizardDialog(
          getWindow().getShell(), wizard);
      wizardDialog.open();
    }
View Full Code Here

            height += 70;
        }
        if( rbConfig.isAllowOptionBugClosed() ){
            height += 30;
        }
        WizardDialog dialogCommitRequestWizard = new WizardDialogReviewBoardLocation(getShell(),
                wizardCommitRequestWizard, 820, height); //$NON-NLS-1$
        dialogCommitRequestWizard.setMinimumPageSize(350, 500);
        dialogCommitRequestWizard.open();
    }
View Full Code Here

        RbConfig rbConfig = RbConfigReader.getRbConfig(null);
        if( rbConfig.isAllowOptionBugClosed() ){
            height += 30;
        }
       
        WizardDialog dialogCommitRequestWizard = new WizardDialogReviewBoardLocation(getShell(), wizardCommitRequestWizard, 820, height); //$NON-NLS-1$
        dialogCommitRequestWizard.setMinimumPageSize(350, 500);
        dialogCommitRequestWizard.open();
    }
View Full Code Here

        int height = 645;
        RbConfig rbConfig = RbConfigReader.getRbConfig(null);
        if( rbConfig.isAllowOptionBugClosed() ){
            height += 30;
        }
        WizardDialog dialogCommitRequestWizard = new WizardDialogReviewBoardLocation(getShell(), wizardCommitRequestWizard, 820, height); //$NON-NLS-1$
        dialogCommitRequestWizard.setMinimumPageSize(350, 500);
        dialogCommitRequestWizard.open();
    }
View Full Code Here

        IStructuredSelection s = (IStructuredSelection) selection;
        Object o = s.getFirstElement();
        if (o instanceof IFile) {
            IFile f = (IFile) o;
            IJavaProject javaProject = JavaCore.create(f.getProject());
            WizardDialog dialog = new WizardDialog(IvyPlugin.getActiveWorkbenchShell(),
                    new NewIvyDEContainerWizard(javaProject, f));
            dialog.open();
        }

        return null;
    }
View Full Code Here

   * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
   */
  @Override
  public void run(IAction action) {
    NewZooKeeperWizard wizard = new NewZooKeeperWizard();
    WizardDialog dialog = new WizardDialog(shell, wizard);
    dialog.open();
  }
View Full Code Here

   * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
   */
  @Override
  public void run(IAction action) {
    NewHDFSWizard wizard = new NewHDFSWizard();
    WizardDialog dialog = new WizardDialog(shell, wizard);
    dialog.open();
  }
View Full Code Here

                }

                AttributeWizard wizard = new AttributeWizard( Messages
                    .getString( "EditLdifAttributeAction.EditAttributeDescription" ), true, false, //$NON-NLS-1$
                    attributeDescription, dummyEntry );
                WizardDialog dialog = new WizardDialog( Display.getDefault().getActiveShell(), wizard );
                dialog.setBlockOnOpen( true );
                dialog.create();
                if ( dialog.open() == Dialog.OK )
                {
                    String newAttributeDescription = wizard.getAttributeDescription();

                    if ( newAttributeDescription != null )
                    {
View Full Code Here

   
    private void launchWizard(Shell shell,
                              INewWizard wizard) {
        wizard.init( workbench,
                     new DummySelection() );
        WizardDialog dialog = new WizardDialog( shell,
                                                wizard );
        dialog.open();
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jface.wizard.WizardDialog

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.