org.springframework.webflow.engine.model
Class AbstractTransitionableStateModel

java.lang.Object
  extended by org.springframework.webflow.engine.model.AbstractModel
      extended by org.springframework.webflow.engine.model.AbstractStateModel
          extended by org.springframework.webflow.engine.model.AbstractTransitionableStateModel
All Implemented Interfaces:
Model
Direct Known Subclasses:
ActionStateModel, SubflowStateModel, ViewStateModel

public abstract class AbstractTransitionableStateModel
extends AbstractStateModel

Model support for transitionable states.

Author:
Scott Andrews

Constructor Summary
AbstractTransitionableStateModel(String id)
           
 
Method Summary
 LinkedList getOnExitActions()
           
 LinkedList getTransitions()
           
 void setOnExitActions(LinkedList onExitActions)
           
 void setTransitions(LinkedList transitions)
           
 
Methods inherited from class org.springframework.webflow.engine.model.AbstractStateModel
getAttributes, getExceptionHandlers, getId, getOnEntryActions, getParent, getSecured, setAttributes, setExceptionHandlers, setId, setOnEntryActions, setParent, setSecured
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.springframework.webflow.engine.model.Model
createCopy, isMergeableWith, merge
 

Constructor Detail

AbstractTransitionableStateModel

public AbstractTransitionableStateModel(String id)
Method Detail

getTransitions

public LinkedList getTransitions()
Returns:
the transitions

setTransitions

public void setTransitions(LinkedList transitions)
Parameters:
transitions - the transitions to set

getOnExitActions

public LinkedList getOnExitActions()
Returns:
the on exit actions

setOnExitActions

public void setOnExitActions(LinkedList onExitActions)
Parameters:
onExitActions - the on exit actions to set