Package org.apache.wicket.extensions.wizard
Package for working with Wizard components. Wizards are dialogs which take users through a number of steps to achieve something.
The main component is wicket.extensions.wizard, which serves as the panel on which the whole wizard is rendered. It is possible to implement
wicket.extensions.wizard.IWizard directly, but it is not recommended. The wizard cooperates with an instance of wicket.extensions.wizard.IWizardModel, for which the default implementation wicket.extensions.wizard.WizardModel is provided. This model knows about the wizard's steps and the transitions between them, and it holds a reference to the currently active step. It might function as a generic state holder for the wizard too, though you might find it more convenient to use the wizard component itself for that, or even an external model. See the wizard example of the wicket-examples project for some examples of wizards.
The Swing Wizard Framework served as a valueable source of inspiration as did discussions with Michael Jouravlev and Tim Boudreau.
-
Interface Summary Interface Description IWizard Interface for the wizard component.IWizardModel This interface defines the model for wizards.IWizardModelListener Receives notifications for wizard model state changes.IWizardStep Models one step in a wizard, and is the equivalent of one panel in a wizard from an end-user's perspective.WizardModel.ICondition Interface for conditional displaying of wizard steps. -
Class Summary Class Description AbstractWizardModel Abstract wizard model that provides an implementation for handlingwizard model listeners
and provides base implementations of many methods.AjaxWizardButtonBar A bar of buttons for wizards utilizingAjaxFormSubmitBehavior
.CancelButton Models a cancel button in the wizard.FinishButton Models a cancel button in the wizard.LastButton Models a 'last' button in the wizard.NextButton Models a next button in the wizard.PreviousButton Models a previous button in the wizard.StaticContentStep A wizard step that displays the provided static content without expecting any input.Wizard A wizard is a dialog component that takes users through a number of steps to complete a task.WizardButton Base class for buttons that work withthe wizard component
.WizardButtonBar The default bar of button components for wizards.WizardModel Default implementation ofIWizardModel
, which models a semi-static wizard.WizardStep default implementation ofIWizardStep
.