Interface StepBackHandler
public interface StepBackHandler
Event handler interface for the wizard step’s “previous step” event.
- Since:
- 4.0
- Author:
- JBStrap
-
Method Summary
Modifier and TypeMethodDescriptionboolean
onBack
(WizardStep step) The method is called if the user navigates back to the previous step.
-
Method Details
-
onBack
The method is called if the user navigates back to the previous step.- Parameters:
step
- The current step instance- Returns:
- If
true
is set, the user is allowed to navigate back to the previous step. Iffalse
is returned, the process stops and the user cannot leave the current step.
-