Interface StepNextHandler
public interface StepNextHandler
Event handler interface for the wizard step’s “next step” event.
- Since:
- 4.0
- Author:
- JBStrap
-
Method Summary
Modifier and TypeMethodDescriptionboolean
onNext
(WizardStep step) The method is called if the user navigates to the next step.
-
Method Details
-
onNext
The method is called if the user navigates to the next step.- Parameters:
step
- The wizard step currently completed by the user- 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.
-