Interface WizardPanelActionListener


public interface WizardPanelActionListener

Listener for the wizard. It has methods to manage the events that can be thrown by the wizard.

Author:
Jorge Piera Llodrá
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    cancel(WizardPanel wizardPanel)
    This event is thrown when the cancel button is clicked.
    void
    finish(WizardPanel wizardPanel)
    This event is thrown when the finish button is clicked.
  • Method Details

    • finish

      void finish(WizardPanel wizardPanel)
      This event is thrown when the finish button is clicked.
      Parameters:
      wizardPanel - The wizard that has thrown the event.
    • cancel

      void cancel(WizardPanel wizardPanel)
      This event is thrown when the cancel button is clicked.
      Parameters:
      wizardPanel - The wizard that has thrown the event.