Uses of Class
org.apache.taglibs.rdc.scxml.model.Transition

Packages that use Transition
org.apache.taglibs.rdc.scxml The core classes for the digestion and interpretation of SCXML documents. 
org.apache.taglibs.rdc.scxml.env A collection of classes bridging the SCXML executor to the RDC runtime environment (servlet container). 
org.apache.taglibs.rdc.scxml.model A collection of classes needed to model SCXML documents. 
 

Uses of Transition in org.apache.taglibs.rdc.scxml
 

Methods in org.apache.taglibs.rdc.scxml with parameters of type Transition
 void NotificationRegistry.fireOnTransition(Observable source, TransitionTarget from, TransitionTarget to, Transition transition)
          Inform all relevant listeners of a transition that has occured
static java.util.Set SCXMLHelper.getStatesExited(Transition t, java.util.Set currentStates)
          Returns the set of all states (and parallels) which are exited if a given transition t is going to be taken.
static boolean SCXMLHelper.inConflict(Transition t1, Transition t2, java.util.Set currentStates)
          According to the UML definition, two transitions are conflicting if the sets of states they exit overlap.
 void SCXMLListener.onTransition(TransitionTarget from, TransitionTarget to, Transition transition)
          Handle the transition
 

Uses of Transition in org.apache.taglibs.rdc.scxml.env
 

Methods in org.apache.taglibs.rdc.scxml.env with parameters of type Transition
 void Tracer.onTransition(TransitionTarget from, TransitionTarget to, Transition transition)
           
 

Uses of Transition in org.apache.taglibs.rdc.scxml.model
 

Methods in org.apache.taglibs.rdc.scxml.model that return Transition
 Transition History.getTransition()
          Get the transition
 Transition Initial.getTransition()
          Get the initial transition
 Transition State.getTransition(java.lang.String event)
          Get the map of all outgoing transitions from this state, which will be fired on the given event.
 

Methods in org.apache.taglibs.rdc.scxml.model with parameters of type Transition
 void State.addTransition(Transition transition)
          Add a transition to the map of all outgoing transitions for this state
 void History.setTransition(Transition transition)
          Set the transition
 void Initial.setTransition(Transition transition)
          Set the initial transition
 



Copyright ? 2000-2004 The Apache Software Foundation. All Rights Reserved.