org.apache.wicket.extensions.wizard |
wicket.extensions.wizard package
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.
|
Java Source File Name | Type | Comment |
AbstractWizardModel.java | Class | Abstract wizard model that provides an implementation for handling
IWizardModelListener wizard model listeners and provides base
implementations of many methods. |
CancelButton.java | Class | Models a cancel button in the wizard. |
FinishButton.java | Class | Models a cancel button in the wizard. |
IWizard.java | Interface | Interface for the wizard component. |
IWizardModel.java | Interface | This interface defines the model for wizards. |
IWizardModelListener.java | Interface | Recieves notifications for wizard model state changes. |
IWizardStep.java | Interface | Models one step in a wizard, and is the equivalent of one panel in a wizard
from an end-user's perspective. |
LastButton.java | Class | Models a 'last' button in the wizard. |
NextButton.java | Class | Models a next button in the wizard. |
PreviousButton.java | Class | Models a previous button in the wizard. |
StaticContentStep.java | Class | A wizard step that displays the provided static content without expecting any
input. |
Wizard.java | Class | A wizard is a dialog component that takes users through a number of steps to
complete a task. |
WizardButton.java | Class | Base class for buttons that work with
IWizard the wizard component . |
WizardButtonBar.java | Class | The default bar of button components for wizards. |
WizardModel.java | Class | Default implementation of
IWizardModel , which models a semi-static
wizard. |
WizardStep.java | Class | default implementation of
IWizardStep . |