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.
-
ClassDescriptionAbstract wizard model that provides an implementation for handling
wizard model listeners
and provides base implementations of many methods.A bar of buttons for wizards utilizingAjaxFormSubmitBehavior
.Models a cancel button in the wizard.Models a cancel button in the wizard.Interface for the wizard component.This interface defines the model for wizards.Receives notifications for wizard model state changes.Models one step in a wizard, and is the equivalent of one panel in a wizard from an end-user's perspective.Models a 'last' button in the wizard.Models a next button in the wizard.Models a previous button in the wizard.A wizard step that displays the provided static content without expecting any input.A wizard is a dialog component that takes users through a number of steps to complete a task.Base class for buttons that work withthe wizard component
.The default bar of button components for wizards.Default implementation ofIWizardModel
, which models a semi-static wizard.Interface for conditional displaying of wizard steps.default implementation ofIWizardStep
.