Uses of Class
com.jbstrap.ui.components.wizard.WizardStep
-
Uses of WizardStep in com.jbstrap.ui.components.wizard
Modifier and TypeMethodDescriptionfinal WizardStep
Wizard.getCurrentStep()
Gets the wizard component’s current step.final WizardStep
Wizard.getStepByIndex
(int index) Gets a wizard step by its index.protected WizardStep
WizardStep.setActive
(boolean active) final WizardStep
WizardStep.setBackHandler
(StepBackHandler handler) Sets the event handler for the “previous step” event.final WizardStep
WizardStep.setDescription
(String description) Sets the step description.WizardStep.setEnabled
(boolean enabled) Enabling/disabling the step.final WizardStep
Sets the step icon.protected WizardStep
WizardStep.setIndex
(int index) final WizardStep
WizardStep.setInitHandler
(StepInitHandler handler) Sets the event handler for the “initialize step” event.final WizardStep
WizardStep.setLeaveHandler
(StepLeaveHandler handler) Sets the event handler for the “leave step” event.final WizardStep
WizardStep.setNextHandler
(StepNextHandler handler) Sets the event handler for the “Next” button.protected WizardStep
final WizardStep
WizardStep.setShowHandler
(StepShowHandler handler) Sets the event handler for the “show step” event.final WizardStep
WizardStep.setState
(WizardStepState state) final WizardStep
Specifies the wizard step title.Modifier and TypeMethodDescriptionfinal Wizard
Wizard.addStep
(WizardStep step) Adds a step to the wizard component.final Wizard
Wizard.addSteps
(WizardStep... steps) Adds multiple steps to the grid. -
Uses of WizardStep in com.jbstrap.ui.components.wizard.interfaces
Modifier and TypeMethodDescriptionboolean
StepBackHandler.onBack
(WizardStep step) The method is called if the user navigates back to the previous step.void
StepInitHandler.onInit
(WizardStep step) The method is called if the wizard step is to be initialized.boolean
StepLeaveHandler.onLeave
(WizardStep step) The method is called if the user has left a wizard step.boolean
StepNextHandler.onNext
(WizardStep step) The method is called if the user navigates to the next step.void
StepShowHandler.onShow
(WizardStep step) The method is called if the wizard step is displayed.