Package nl.gx.forms.wmpformapi.api
Interface BasicFormStep
-
- All Superinterfaces:
BasicFormFragmentContainer
,BasicFormLogicContainer
- All Known Subinterfaces:
FormStep
public interface BasicFormStep extends BasicFormLogicContainer
Basic interface for the FormStep. All FormStep implementations should implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BasicFormVersion
getFormVersion()
Returns the form version of this form step.BasicFormStep
getNextStep()
Returns the next step.BasicFormStep
getPreviousStep()
Returns the previous step.-
Methods inherited from interface nl.gx.forms.wmpformapi.api.BasicFormFragmentContainer
getAllChildFormFragments, getAllChildFormFragments, getAllFormFragments, getFormFragments, getIdentifier, getNestedPath
-
Methods inherited from interface nl.gx.forms.wmpformapi.api.BasicFormLogicContainer
getAllFormLogicComponents, getAllPreHandleFormLogicComponents, getFormLogic, getPreHandleFormLogic
-
-
-
-
Method Detail
-
getFormVersion
BasicFormVersion getFormVersion()
Returns the form version of this form step.- Returns:
- the form version of this form step
-
getPreviousStep
BasicFormStep getPreviousStep()
Returns the previous step.- Returns:
- the previous step or
null
if there is no previous step.
-
getNextStep
BasicFormStep getNextStep()
Returns the next step.- Returns:
- the next step or
null
if there is no next step.
-
-