Package edu.hawaii.ics.csdl.jupiter.ui.wizard

Examples of edu.hawaii.ics.csdl.jupiter.ui.wizard.ReviewIdNewWizard


   * Processes configuration wizard dialog.
   * @param project the project.
   * @return the return code of the dialog.
   */
  public static int processConfigWizardDialog(IProject project) {
    INewWizard wizard = new ReviewIdNewWizard(project);
    wizard.init(workbench, null);
    // Instantiates the wizard container with the wizard and opens it
    IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
    WizardDialog dialog = new WizardDialog(window.getShell(), wizard);
    dialog.create();
    return dialog.open();
View Full Code Here

TOP

Related Classes of edu.hawaii.ics.csdl.jupiter.ui.wizard.ReviewIdNewWizard

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.