Uses of Class
org.apache.commons.scxml.model.State

Packages that use State
org.apache.commons.scxml.io A collection of classes for reading in and writing out SCXML documents, to and from the Commons SCXML Java object model. 
org.apache.commons.scxml.model A collection of classes needed to model SCXML documents. 
 

Uses of State in org.apache.commons.scxml.io
 

Methods in org.apache.commons.scxml.io with parameters of type State
static void SCXMLSerializer.serializeState(StringBuffer b, State s, String indent)
          Serialize this State object.
 

Uses of State in org.apache.commons.scxml.model
 

Subclasses of State in org.apache.commons.scxml.model
 class Final
          The class in this SCXML object model that corresponds to the <final> SCXML element.
 

Methods in org.apache.commons.scxml.model that return State
 State SCXML.getInitialState()
          Deprecated. Use getInitialTarget() instead. Returns null if the initial target is a Parallel.
 State TransitionTarget.getParentState()
          Deprecated. Will be removed in v1.0
 State Action.getParentState()
          Deprecated. Use Action.getParentTransitionTarget() instead.
 State Path.getScope()
          Deprecated. Use Path.getPathScope() instead.
 

Methods in org.apache.commons.scxml.model with parameters of type State
 void State.addChild(State state)
          Deprecated. Use addChild(TransitionTarget) instead.
 void SCXML.addState(State state)
          Deprecated. Use addChild(TransitionTarget) instead.
 void Parallel.addState(State state)
          Deprecated. Use addChild(TransitionTarget) instead.
 void SCXML.setInitialState(State initialState)
          Deprecated. Use setInitialTarget(TransitionTarget) instead.
 



Copyright © 2005-2008 The Apache Software Foundation. All Rights Reserved.