Uses of Class
gate.fsm.Transition

Packages that use Transition
gate.fsm   
 

Uses of Transition in gate.fsm
 

Fields in gate.fsm declared as Transition
protected  Transition FSM.currentTransition
           
 

Methods in gate.fsm that return Transition
 Transition Transition.spawn(State s)
          Creates a new transition to the given State with the same bindings as this one.
 

Methods in gate.fsm that return types with arguments of type Transition
 Map<State,SimpleArraySet<Transition>> FSM.getAllStates()
           
 SimpleArraySet<Transition> State.getTransitions()
          Gets the set of transitions for this state.
 

Methods in gate.fsm with parameters of type Transition
 void State.addTransition(Transition transition)
          Adds a new transition to the list of outgoing transitions for this state.