Interface StepLeaveHandler


public interface StepLeaveHandler
Step leave event handler interface.
Since:
4.0
Author:
JBStrap
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    The method is called if the user has left a wizard step.
  • Method Details

    • onLeave

      boolean onLeave(WizardStep step)
      The method is called if the user has left a wizard step. To leave the interface, the user must use the header or the “Previous” and “Next” navigation buttons. The method is called only if the user has left the step; StepBackHandler and StepNextHandler were executed and returned TRUE.
      Parameters:
      step - Step instance to be left
      Returns:
      If true is returned, the user can leave the step. If false is returned, the process stops and the user cannot leave the current step.