Uses of Interface
wicket.extensions.wizard.IWizardStep

Packages that use IWizardStep
wicket.extensions.wizard Package for working with Wizard components. 
 

Uses of IWizardStep in wicket.extensions.wizard
 

Classes in wicket.extensions.wizard that implement IWizardStep
 class StaticContentStep
          A wizard step that displays the provided static content without expecting any input.
 class WizardStep
          default implementation of IWizardStep.
 

Methods in wicket.extensions.wizard that return IWizardStep
 IWizardStep WizardModel.getActiveStep()
          Gets the current active step the wizard should display.
protected  IWizardStep WizardModel.findLastStep()
          Finds the last step in this model.
protected  IWizardStep WizardModel.findNextVisibleStep()
          Finds the next visible step based on the active step.
 IWizardStep Wizard.getActiveStep()
          Convenience method to get the active step from the model.
 IWizardStep IWizardModel.getActiveStep()
          Gets the current active step the wizard should display.
 

Methods in wicket.extensions.wizard with parameters of type IWizardStep
 void WizardModel.add(IWizardStep step)
          Adds the next step to the wizard.
 void WizardModel.add(IWizardStep step, WizardModel.ICondition condition)
          Adds an optional step to the model.
 boolean WizardModel.isLastStep(IWizardStep step)
           
 void WizardModel.setActiveStep(IWizardStep step)
          Sets the active step.
protected  void WizardModel.fireActiveStepChanged(IWizardStep step)
          Notify listeners that the active step has changed.
 void Wizard.onActiveStepChanged(IWizardStep newStep)
           
 void IWizardModelListener.onActiveStepChanged(IWizardStep newStep)
          Called when the active step of this model changed.
 boolean IWizardModel.isLastStep(IWizardStep step)
          Gets whether the specified step is the last step in the wizard.
 



Copyright © 2004-2008 Wicket developers. All Rights Reserved.