Uses of Interface
org.apache.wicket.extensions.wizard.IWizardStep
-
Packages that use IWizardStep Package Description 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 Modifier and Type Class Description classStaticContentStepA wizard step that displays the provided static content without expecting any input.classWizardStepdefault implementation ofIWizardStep.Methods in org.apache.wicket.extensions.wizard that return IWizardStep Modifier and Type Method Description protected IWizardStepWizardModel. findLastStep()Finds the last step in this model.protected IWizardStepWizardModel. findNextVisibleStep()Finds the next visible step based on the active step.IWizardStepIWizardModel. getActiveStep()Gets the current active step the wizard should display.IWizardStepWizard. getActiveStep()Convenience method to get the active step from the model.IWizardStepWizardModel. 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 Modifier and Type Method Description Iterator<IWizardStep>IWizardModel. stepIterator()Returns an iterator over all the steps in the model.Iterator<IWizardStep>WizardModel. stepIterator()Methods in org.apache.wicket.extensions.wizard with parameters of type IWizardStep Modifier and Type Method Description voidWizardModel. add(IWizardStep step)Adds the next step to the wizard.voidWizardModel. add(IWizardStep step, WizardModel.ICondition condition)Adds an optional step to the model.protected voidAbstractWizardModel. fireActiveStepChanged(IWizardStep step)Notify listeners that the active step has changed.booleanIWizardModel. isLastStep(IWizardStep step)Gets whether the specified step is the last step in the wizard.booleanWizardModel. isLastStep(IWizardStep step)default voidIWizardModelListener. onActiveStepChanged(IWizardStep newStep)Called when the active step of this model changed.voidWizard. onActiveStepChanged(IWizardStep newStep)voidWizardModel. 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 Modifier and Type Interface Description interfaceIDynamicWizardStepWizard 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 Modifier and Type Class Description classDynamicWizardStepDefault implementation of adynamic wizard step.Methods in org.apache.wicket.extensions.wizard.dynamic that return types with arguments of type IWizardStep Modifier and Type Method Description Iterator<IWizardStep>DynamicWizardModel. stepIterator()Methods in org.apache.wicket.extensions.wizard.dynamic with parameters of type IWizardStep Modifier and Type Method Description booleanDynamicWizardModel. isLastStep(IWizardStep step)
-