Class WizardAdapter

  • All Implemented Interfaces:
    WizardListener

    public class WizardAdapter
    extends java.lang.Object
    implements WizardListener
    A base class for WizardListeners 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 Detail

      • WizardAdapter

        public WizardAdapter()
    • 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 interface WizardListener
        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 interface WizardListener
        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 interface WizardListener
        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 interface WizardListener
        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 interface WizardListener
        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 interface WizardListener
        Parameters:
        e - an object that provides more details about the event