Package ca.cgjennings.ui.wizard
Interface WizardListener
-
- All Known Implementing Classes:
WizardAdapter
public interface WizardListener
Interface 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 void
wizardBlockStateChanged(WizardEvent e)
Event fired when the model's progress is blocked or unblocked.void
wizardFinished(WizardEvent e)
Event fired when the model'sWizardModel.finish()
method is called.void
wizardHidingPage(WizardEvent e)
Event fired when a page is being left.void
wizardPageChanged(WizardEvent e)
Event fired when the model's current page changes.void
wizardPageOrderChanged(WizardEvent e)
Event fired when the set of pages in the model changes.void
wizardReset(WizardEvent e)
Event fired when the model is reset to its initial state.void
wizardShowingPage(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
-
-