Interface IWebServerWizard

  • All Superinterfaces:
    org.eclipse.ui.INewWizard, org.eclipse.jface.wizard.IWizard, org.eclipse.ui.IWorkbenchWizard

    public interface IWebServerWizard
    extends org.eclipse.ui.INewWizard
    Wizard for adding existing WebServer.

    Wizard can be accessed through IWizardRegistry:

     IWizardRegistry newWizardRegistry =
         PlatformUI.getWorkbench().getNewWizardRegistry();
     IWizardDescriptor wizardDescriptor =
         newWizardRegistry.findWizard(IPlatformServicesUIConstants.WIZARD_WEB_SERVER);
     IWebServerWizard wizard = (IWebServerWizard) wizardDescriptor.createWizard();
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      WebServer getResult()
      Get result of the wizard: adding WebServer.
      void setExistedNames​(Collection<String> existedNames)
      Set collection of already existed names, wizard cannot create web server with any of it.
      • Methods inherited from interface org.eclipse.jface.wizard.IWizard

        addPages, canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, performFinish, setContainer
      • Methods inherited from interface org.eclipse.ui.IWorkbenchWizard

        init
    • Method Detail

      • getResult

        WebServer getResult()
        Get result of the wizard: adding WebServer.
        Returns:
        the result adding or editing WebServer, never null
      • setExistedNames

        void setExistedNames​(Collection<String> existedNames)
        Set collection of already existed names, wizard cannot create web server with any of it.
        Parameters:
        existedNames - collection of already existed names, wizard cannot create web server with any of it, cannot be null