Package ca.cgjennings.ui.wizard
Class WizardAdapter
- java.lang.Object
-
- ca.cgjennings.ui.wizard.WizardAdapter
-
- All Implemented Interfaces:
WizardListener
public class WizardAdapter extends java.lang.Object implements WizardListener
A base class forWizardListener
s that provides no-op implementations for all of the listener methods. This allows you to create listeners that only implement the methods you are interested in.- Since:
- 3.0
- Author:
- Chris Jennings
-
-
Constructor Summary
Constructors Constructor Description WizardAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void wizardPageOrderChanged(WizardEvent e)
Description copied from interface:WizardListener
Event fired when the set of pages in the model changes.- Specified by:
wizardPageOrderChanged
in interfaceWizardListener
- Parameters:
e
- an object that provides more details about the event
-
wizardReset
public void wizardReset(WizardEvent e)
Description copied from interface:WizardListener
Event fired when the model is reset to its initial state.- Specified by:
wizardReset
in interfaceWizardListener
- Parameters:
e
- an object that provides more details about the event
-
wizardPageChanged
public void wizardPageChanged(WizardEvent e)
Description copied from interface:WizardListener
Event fired when the model's current page changes.- Specified by:
wizardPageChanged
in interfaceWizardListener
- Parameters:
e
- an object that provides more details about the event
-
wizardHidingPage
public void wizardHidingPage(WizardEvent e)
Description copied from interface:WizardListener
Event fired when a page is being left.- Specified by:
wizardHidingPage
in interfaceWizardListener
- Parameters:
e
- an object that provides more details about the event
-
wizardShowingPage
public void wizardShowingPage(WizardEvent e)
Description copied from interface:WizardListener
Event fired when a page is becoming the current page.- Specified by:
wizardShowingPage
in interfaceWizardListener
- Parameters:
e
- an object that provides more details about the event
-
wizardFinished
public void wizardFinished(WizardEvent e)
Description copied from interface:WizardListener
Event fired when the model'sWizardModel.finish()
method is called.- Specified by:
wizardFinished
in interfaceWizardListener
- Parameters:
e
- an object that provides more details about the event
-
wizardBlockStateChanged
public void wizardBlockStateChanged(WizardEvent e)
Description copied from interface:WizardListener
Event fired when the model's progress is blocked or unblocked.- Specified by:
wizardBlockStateChanged
in interfaceWizardListener
- Parameters:
e
- an object that provides more details about the event
-
-