Interface WizardListener

  • All Known Implementing Classes:
    WizardAdapter

    public interface WizardListener
    Interface implemented by objects that listen to events fired from a WizardModel.
    Since:
    3.0
    Author:
    Chris Jennings
    • 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's WizardModel.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