net.javaprog.ui.wizard
Interface WizardModelListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
BasicWizardContentPaneUI.BasicWizardModelHandler

public interface WizardModelListener
extends EventListener

Provides an interface for wizard model event listeners.

Author:
Michael Rudolf
See Also:
WizardModelEvent, WizardModel

Method Summary
 void stepShown(WizardModelEvent e)
          Called when a step from the model is shown in the wizard.
 void wizardCanceled(WizardModelEvent e)
          Called when the wizard is canceled.
 void wizardFinished(WizardModelEvent e)
          Called when the wizard is finished.
 void wizardModelChanged(WizardModelEvent e)
          Called when the wizard model changes due to some StepModelCustomizer.
 

Method Detail

stepShown

void stepShown(WizardModelEvent e)
Called when a step from the model is shown in the wizard.


wizardCanceled

void wizardCanceled(WizardModelEvent e)
Called when the wizard is canceled. This can be accomplished by pressing the Cancel button, closing the wizard's window or directly calling WizardModel.cancelWizard().

See Also:
WizardModel.cancelWizard()

wizardFinished

void wizardFinished(WizardModelEvent e)
Called when the wizard is finished. This can either be accomplished by pressing the Finish button or by directly calling WizardModel.finishWizard().

See Also:
WizardModel.finishWizard()

wizardModelChanged

void wizardModelChanged(WizardModelEvent e)
Called when the wizard model changes due to some StepModelCustomizer.

See Also:
StepModelCustomizer