Interface WizardListener

  • All Known Implementing Classes:
    SpoolExportWizard

    public interface WizardListener
    The listener interface for those interested in receiving Wizard events.
    • Method Detail

      • nextBegin

        void nextBegin​(WizardEvent e)
        Invoked before advancing to the next page. Calling e.setAllowChange(false) will prevent the next page from being advanced too. Check the e.isLastPage() to see if you are on the last page.
        Parameters:
        e - an event
      • nextComplete

        void nextComplete​(WizardEvent e)
        Invoked after advancing to the next page.
        Parameters:
        e - an event
      • previousBegin

        void previousBegin​(WizardEvent e)
        Invoked before advancing to the previous page. Calling e.setAllowChange(false) will prevent the previous page from being advanced too.
        Parameters:
        e - an event
      • previousComplete

        void previousComplete​(WizardEvent e)
        Invoked after advancing to the previous page.
        Parameters:
        e - an event
      • finished

        void finished​(WizardEvent e)
        Invoked if a "finish" action is triggered.
        Parameters:
        e - an event
      • canceled

        void canceled​(WizardEvent e)
        Invoked if the Cancel action is triggered.
        Parameters:
        e - an event
      • help

        void help​(WizardEvent e)
        Invoked if the Help action is triggered.
        Parameters:
        e - an event