|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TransitionTarget | |
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 TransitionTarget in org.apache.taglibs.rdc.scxml |
Methods in org.apache.taglibs.rdc.scxml that return TransitionTarget | |
static TransitionTarget |
SCXMLHelper.getLCA(TransitionTarget tt1,
TransitionTarget tt2)
finds the least common ancestor of transition targets tt1 and tt2 if one exists. |
Methods in org.apache.taglibs.rdc.scxml with parameters of type TransitionTarget | |
void |
NotificationRegistry.fireOnEntry(Observable source,
TransitionTarget state)
Inform all relevant listeners that a TransitionTarget has been entered |
void |
NotificationRegistry.fireOnExit(Observable source,
TransitionTarget state)
Inform all relevant listeners that a TransitionTarget has been exited |
void |
NotificationRegistry.fireOnTransition(Observable source,
TransitionTarget from,
TransitionTarget to,
Transition transition)
Inform all relevant listeners of a transition that has occured |
static boolean |
SCXMLHelper.isDescendant(TransitionTarget tt,
TransitionTarget ctx)
Checks whether a transition target tt (State or Parallel) is a descendant of the transition target ctx. |
static TransitionTarget |
SCXMLHelper.getLCA(TransitionTarget tt1,
TransitionTarget tt2)
finds the least common ancestor of transition targets tt1 and tt2 if one exists. |
void |
SCXMLListener.onEntry(TransitionTarget state)
Handle the entry into a TransitionTarget |
void |
SCXMLListener.onExit(TransitionTarget state)
Handle the exit out of a TransitionTarget |
void |
SCXMLListener.onTransition(TransitionTarget from,
TransitionTarget to,
Transition transition)
Handle the transition |
Uses of TransitionTarget in org.apache.taglibs.rdc.scxml.env |
Methods in org.apache.taglibs.rdc.scxml.env with parameters of type TransitionTarget | |
void |
Tracer.onEntry(TransitionTarget state)
|
void |
Tracer.onExit(TransitionTarget state)
|
void |
Tracer.onTransition(TransitionTarget from,
TransitionTarget to,
Transition transition)
|
Uses of TransitionTarget in org.apache.taglibs.rdc.scxml.model |
Subclasses of TransitionTarget in org.apache.taglibs.rdc.scxml.model | |
class |
History
The class in this SCXML object model that corresponds to the <history> SCXML pseudo state element. |
class |
Initial
The class in this SCXML object model that corresponds to the <initial> SCXML pseudo state element. |
class |
Parallel
The class in this SCXML object model that corresponds to the <parallel> SCXML element, which is a wrapper element to encapsulate parallel state machines. |
class |
State
The class in this SCXML object model that corresponds to the <state> SCXML element. |
Fields in org.apache.taglibs.rdc.scxml.model declared as TransitionTarget | |
protected TransitionTarget |
Executable.parent
The parent container, for traceability |
Methods in org.apache.taglibs.rdc.scxml.model that return TransitionTarget | |
TransitionTarget |
Executable.getParent()
Get the TransitionTarget parent |
TransitionTarget |
Transition.getTarget()
Get the transition target (may be null) |
TransitionTarget |
Transition.getRuntimeTarget()
Get the runtime transition target, which always resolves to a TransitionTarget instance. |
TransitionTarget |
TransitionTarget.getParent()
Get the parent TransitionTarget |
Methods in org.apache.taglibs.rdc.scxml.model with parameters of type TransitionTarget | |
void |
SCXML.addTarget(TransitionTarget target)
Add a target to this SCXML document |
void |
Executable.setParent(TransitionTarget parent)
Set the TransitionTarget parent |
void |
Transition.setTarget(TransitionTarget target)
Set the transition target |
void |
TransitionTarget.setParent(TransitionTarget parent)
Set the parent TransitionTarget |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |