Interface StepLeaveHandler
public interface StepLeaveHandler
Step leave event handler interface.
- Since:
- 4.0
- Author:
- JBStrap
-
Method Summary
Modifier and TypeMethodDescriptionboolean
onLeave
(WizardStep step) The method is called if the user has left a wizard step.
-
Method Details
-
onLeave
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
andStepNextHandler
were executed and returned TRUE.- Parameters:
step
- Step instance to be left- Returns:
- If
true
is returned, the user can leave the step. Iffalse
is returned, the process stops and the user cannot leave the current step.
-