Package ca.cgjennings.ui.wizard
Interface WizardListener
-
- All Known Implementing Classes:
WizardAdapter
public interface WizardListenerInterface implemented by objects that listen to events fired from aWizardModel.- Since:
- 3.0
- Author:
- Chris Jennings
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwizardBlockStateChanged(WizardEvent e)Event fired when the model's progress is blocked or unblocked.voidwizardFinished(WizardEvent e)Event fired when the model'sWizardModel.finish()method is called.voidwizardHidingPage(WizardEvent e)Event fired when a page is being left.voidwizardPageChanged(WizardEvent e)Event fired when the model's current page changes.voidwizardPageOrderChanged(WizardEvent e)Event fired when the set of pages in the model changes.voidwizardReset(WizardEvent e)Event fired when the model is reset to its initial state.voidwizardShowingPage(WizardEvent e)Event fired when a page is becoming the current page.
-
-
-
Method Detail
-
wizardPageOrderChanged
void wizardPageOrderChanged(WizardEvent e)
Event fired when the set of pages in the model changes.- Parameters:
e- an object that provides more details about the event
-
wizardReset
void wizardReset(WizardEvent e)
Event fired when the model is reset to its initial state.- Parameters:
e- an object that provides more details about the event
-
wizardPageChanged
void wizardPageChanged(WizardEvent e)
Event fired when the model's current page changes.- Parameters:
e- an object that provides more details about the event
-
wizardHidingPage
void wizardHidingPage(WizardEvent e)
Event fired when a page is being left.- Parameters:
e- an object that provides more details about the event
-
wizardShowingPage
void wizardShowingPage(WizardEvent e)
Event fired when a page is becoming the current page.- Parameters:
e- an object that provides more details about the event
-
wizardFinished
void wizardFinished(WizardEvent e)
Event fired when the model'sWizardModel.finish()method is called.- Parameters:
e- an object that provides more details about the event
-
wizardBlockStateChanged
void wizardBlockStateChanged(WizardEvent e)
Event fired when the model's progress is blocked or unblocked.- Parameters:
e- an object that provides more details about the event
-
-