|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
PanelWizardStep.
public interface WizardPane
WizardPane: must be implemented by components that want to act as wizard
panes in collaboration with a WizardPaneStep.
| Method Summary | |
|---|---|
void |
applyState()
Deprecated. This method is called whenever the user presses next while this step is active. |
void |
init(WizardStep step,
WizardModel model)
Deprecated. Called to initialize the step. |
void |
prepare()
Deprecated. Called to prepare this step to display. |
| Method Detail |
|---|
void init(WizardStep step,
WizardModel model)
WizardStep in order to call
WizardStep#setComplete(boolean) when the step is filled with enough information,
and a reference to the model in order to update it on applyState().
WizardStep - the step that uses this panemodel - the model to which the step belongs.
void applyState()
throws InvalidStateException
If this method will take a long time to complete, implementors should
consider executing the work and a separate thread calling
WizardStep#setView()with some kind of progress indicator.
This method will only be called if WizardModel.isNextAvailable()
and WizardStep.isComplete()return true.
InvalidStateException - if an error occurs and the wizard can't progress to the next
step. By default the message of this exception will be
displayed to the user. If you wish to prevent this behaviour
please ensure InvalidStateException.setShowUser(boolean)is
called with a value of false.void prepare()
This method will be called whenever the step is to be displayed, regardless of whether the user pressed next or previous.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||