Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
static void |
SCXMLSerializer.serializeState(StringBuffer b,
State s,
String indent)
Serialize this State object.
|
Modifier and Type | Class and Description |
---|---|
class |
Final
The class in this SCXML object model that corresponds to the
<final> SCXML element.
|
Modifier and Type | Method and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
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-2012 Apache Software Foundation. All Rights Reserved.