Uses of Class
org.apache.commons.graph.domain.statemachine.State

Packages that use State
org.apache.commons.graph.domain.statemachine   
 

Uses of State in org.apache.commons.graph.domain.statemachine
 

Fields in org.apache.commons.graph.domain.statemachine declared as State
private  State StateMachine.startState
           
private  State Transition.source
           
private  State Transition.target
           
 

Methods in org.apache.commons.graph.domain.statemachine that return State
 State StateMachine.getState(java.lang.String name)
          Gets the state attribute of the StateMachine object
 State Transition.getSource()
          Gets the source attribute of the Transition object
 State Transition.getTarget()
          Gets the target attribute of the Transition object
 

Methods in org.apache.commons.graph.domain.statemachine with parameters of type State
 void StateMachine.addState(State state)
          Adds a State to the collection of states maintained by the machine.
 void StateMachine.setStartState(State state)
          Sets the startState attribute of the StateMachine object
 void StateMachine.addFinalState(State state)
          Adds the state to the set of Final States available.
 void StateMachine.addTransition(java.lang.String name, State source, State target)
          Adds a feature to the Transition attribute of the StateMachine object.
 

Constructors in org.apache.commons.graph.domain.statemachine with parameters of type State
Transition(java.lang.String name, State source, State target)
          Constructor for the Transition object