Interface IRuntimeInstallationWizard

  • All Superinterfaces:
    org.eclipse.ui.INewWizard, org.eclipse.jface.wizard.IWizard, org.eclipse.ui.IWorkbenchWizard
    All Known Implementing Classes:
    AbstractRuntimeInstallationWizard

    public interface IRuntimeInstallationWizard
    extends org.eclipse.ui.INewWizard
    Wizard for adding / editing existing RuntimeInstallation.

    Wizard can be accessed through IWizardRegistry:

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      RuntimeInstallation getResult()
      Get result adding/editing 1C:Enterprise Runtime installation.
      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

        RuntimeInstallation getResult()
        Get result adding/editing 1C:Enterprise Runtime installation.
        Returns:
        result adding/editing 1C:Enterprise Runtime installation, 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