Interface IWizardStep

    • Method Detail

      • init

        void init​(IWizardModel wizardModel)
        Initializes this step with the model it will belong to.

        This method is called at least once before this step becomes the actual step.

        Parameters:
        wizardModel - the owning wizard model
      • getHeader

        Component getHeader​(String id,
                            Component parent,
                            IWizard wizard)
        Gets the header component for this step. This component is displayed in a special section of the wizard.

        This method is called every time this step becomes the active step of the wizard.

        Parameters:
        id - The id that the component should be created with
        parent - The parent component (for post 1.2)
        wizard - The wizard component the header will be placed on
        Returns:
        The header component
      • getView

        Component getView​(String id,
                          Component parent,
                          IWizard wizard)
        Returns the current view this step is displaying. This component will be displayed in the main section of the wizard.

        This method is called every time this step becomes the active step of the wizard.

        Parameters:
        id - The id that the component should be created with
        parent - The parent component (for post 1.2)
        wizard - The wizard component the header will be placed on
        Returns:
        The current view of the step.