Interface Wizard.IWizardPageInfo

All Known Implementing Classes:
Wizard.WizardPageInfo
Enclosing class:
Wizard

public static interface Wizard.IWizardPageInfo
One page within the wizard.
  • Method Details

    • getStep

      String getStep()
      Name of the wizard step that is displayed to the user.
    • getPage

      String getPage()
      Page that is shown for the step.
    • getContentReplace

      String getContentReplace()
      Content replace for the page that will be included.
    • checkIfFinishIsEnabled

      boolean checkIfFinishIsEnabled()
      Check if this page allows to finish the wizard. Finishing means providing the function to successfully finish.
    • checkIfPageIsEnabled

      boolean checkIfPageIsEnabled()
      Check if this page is enabled.
    • checkIfDisabledMeansInvisibleWithPrevious

      boolean checkIfDisabledMeansInvisibleWithPrevious()
    • checkIfDisabledMeansInvisibleWithNext

      boolean checkIfDisabledMeansInvisibleWithNext()
    • checkIfDisabledMeansInvisibleWithFinish

      boolean checkIfDisabledMeansInvisibleWithFinish()
    • getTextPrevious

      String getTextPrevious()
    • getTextNext

      String getTextNext()
    • getTextFinish

      String getTextFinish()
    • getTextCancel

      String getTextCancel()
    • getIconPrevious

      String getIconPrevious()
    • getIconNext

      String getIconNext()
    • getIconFinish

      String getIconFinish()
    • getIconCancel

      String getIconCancel()
    • getIconDisabled

      String getIconDisabled()
    • getRenderedDistance

      boolean getRenderedDistance()
      There are four buttons within the wizards: previous, next, finish, cancel. Between the next and the finish button there is a distance. By specifying "false" you decide that the distance is not rendered.