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 forWizardListeners 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 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
public void wizardPageOrderChanged(WizardEvent e)
Description copied from interface:WizardListenerEvent fired when the set of pages in the model changes.- Specified by:
wizardPageOrderChangedin interfaceWizardListener- Parameters:
e- an object that provides more details about the event
-
wizardReset
public void wizardReset(WizardEvent e)
Description copied from interface:WizardListenerEvent fired when the model is reset to its initial state.- Specified by:
wizardResetin interfaceWizardListener- Parameters:
e- an object that provides more details about the event
-
wizardPageChanged
public void wizardPageChanged(WizardEvent e)
Description copied from interface:WizardListenerEvent fired when the model's current page changes.- Specified by:
wizardPageChangedin interfaceWizardListener- Parameters:
e- an object that provides more details about the event
-
wizardHidingPage
public void wizardHidingPage(WizardEvent e)
Description copied from interface:WizardListenerEvent fired when a page is being left.- Specified by:
wizardHidingPagein interfaceWizardListener- Parameters:
e- an object that provides more details about the event
-
wizardShowingPage
public void wizardShowingPage(WizardEvent e)
Description copied from interface:WizardListenerEvent fired when a page is becoming the current page.- Specified by:
wizardShowingPagein interfaceWizardListener- Parameters:
e- an object that provides more details about the event
-
wizardFinished
public void wizardFinished(WizardEvent e)
Description copied from interface:WizardListenerEvent fired when the model'sWizardModel.finish()method is called.- Specified by:
wizardFinishedin interfaceWizardListener- Parameters:
e- an object that provides more details about the event
-
wizardBlockStateChanged
public void wizardBlockStateChanged(WizardEvent e)
Description copied from interface:WizardListenerEvent fired when the model's progress is blocked or unblocked.- Specified by:
wizardBlockStateChangedin interfaceWizardListener- Parameters:
e- an object that provides more details about the event
-
-