Class ViewStateModel
java.lang.Object
org.springframework.webflow.engine.model.AbstractModel
org.springframework.webflow.engine.model.AbstractStateModel
org.springframework.webflow.engine.model.AbstractTransitionableStateModel
org.springframework.webflow.engine.model.ViewStateModel
- All Implemented Interfaces:
Model
Model support for view states.
- Author:
- Scott Andrews
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionCreate a deep copy of this model.getModel()
getPopup()
getVars()
getView()
boolean
isMergeableWith
(Model model) Determine if the model is able to be merged into the current modelvoid
Merge the model into the current modelvoid
setBinder
(BinderModel binder) void
void
setOnRenderActions
(LinkedList<AbstractActionModel> onRenderActions) void
void
setRedirect
(String redirect) void
setValidationHints
(String validationHints) void
setVars
(LinkedList<VarModel> vars) void
Methods inherited from class org.springframework.webflow.engine.model.AbstractTransitionableStateModel
fillCopy, getOnExitActions, getTransitions, setOnExitActions, setTransitions
Methods inherited from class org.springframework.webflow.engine.model.AbstractStateModel
fillCopy, getAttributes, getExceptionHandlers, getId, getOnEntryActions, getParent, getSecured, setAttributes, setExceptionHandlers, setId, setOnEntryActions, setParent, setSecured
-
Constructor Details
-
ViewStateModel
Create a view state model- Parameters:
id
- the identifier of the state
-
-
Method Details
-
isMergeableWith
Description copied from interface:Model
Determine if the model is able to be merged into the current model- Parameters:
model
- the model to compare- Returns:
- true if able to merge
-
merge
Description copied from interface:Model
Merge the model into the current model- Parameters:
model
- the model to merge with
-
createCopy
Description copied from interface:Model
Create a deep copy of this model. Needed when merging models and collections.- Returns:
- a deep copy of this model
-
getView
- Returns:
- the view
-
setView
- Parameters:
view
- the view to set
-
getRedirect
- Returns:
- the redirect
-
setRedirect
- Parameters:
redirect
- the redirect to set
-
getPopup
- Returns:
- the popup
-
setPopup
- Parameters:
popup
- the popup to set
-
getModel
- Returns:
- the model
-
setModel
- Parameters:
model
- the model to set
-
getValidationHints
-
setValidationHints
-
getVars
- Returns:
- the vars
-
setVars
- Parameters:
vars
- the vars to set
-
getBinder
-
setBinder
-
getOnRenderActions
- Returns:
- the on render actions
-
setOnRenderActions
- Parameters:
onRenderActions
- the on render actions to set
-