Uses of Interface
org.apache.wicket.extensions.wizard.IWizardStep

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

Uses of IWizardStep in org.apache.wicket.extensions.wizard
 

Classes in org.apache.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 org.apache.wicket.extensions.wizard that return IWizardStep
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 WizardModel.getActiveStep()
          Gets the current active step the wizard should display.
 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 org.apache.wicket.extensions.wizard that return types with arguments of type IWizardStep
 Iterator<IWizardStep> WizardModel.stepIterator()
           
 Iterator<IWizardStep> IWizardModel.stepIterator()
          Returns an iterator over all the steps in the model.
 

Methods in org.apache.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.
protected  void AbstractWizardModel.fireActiveStepChanged(IWizardStep step)
          Notify listeners that the active step has changed.
 boolean WizardModel.isLastStep(IWizardStep step)
           
 boolean IWizardModel.isLastStep(IWizardStep step)
          Gets whether the specified step is the last step in the wizard.
 void Wizard.onActiveStepChanged(IWizardStep newStep)
           
 void IWizardModelListener.onActiveStepChanged(IWizardStep newStep)
          Called when the active step of this model changed.
 void WizardModel.setActiveStep(IWizardStep step)
          Sets the active step.
 

Uses of IWizardStep in org.apache.wicket.extensions.wizard.dynamic
 

Subinterfaces of IWizardStep in org.apache.wicket.extensions.wizard.dynamic
 interface IDynamicWizardStep
          Wizard step that is intelligent enough to know how to navigate to the next and previous steps.
 

Classes in org.apache.wicket.extensions.wizard.dynamic that implement IWizardStep
 class DynamicWizardStep
          Default implementation of a dynamic wizard step.
 

Methods in org.apache.wicket.extensions.wizard.dynamic that return IWizardStep
 IWizardStep DynamicWizardModel.getActiveStep()
           
 

Methods in org.apache.wicket.extensions.wizard.dynamic that return types with arguments of type IWizardStep
 Iterator<IWizardStep> DynamicWizardModel.stepIterator()
           
 

Methods in org.apache.wicket.extensions.wizard.dynamic with parameters of type IWizardStep
 boolean DynamicWizardModel.isLastStep(IWizardStep step)
           
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.