Method Summary |
|
final public String | getCond() Get the guard condition (may be null). |
final public String | getEvent() Get the event that will trigger this transition (pending
evaluation of the guard condition in favor). |
final public Map | getNamespaces() Get the XML namespaces at this action node in the SCXML document. |
final public String | getNext() Get the ID of the transition target (may be null, if, for example,
the target is specified inline). |
final public Path | getPath() Get the path of this transiton. |
final public TransitionTarget | getRuntimeTarget() Get the runtime transition target, which always resolves to
a TransitionTarget instance.
Returns the actual target of a transition at runtime.Remarks: For both the "stay" and "self"transitions it returns parent (the source node). |
final public TransitionTarget | getTarget() Get the transition target (may be null). |
final public void | setCond(String cond) Set the guard condition. |
final public void | setEvent(String event) Set the event that will trigger this transition (pending
evaluation of the guard condition in favor). |
final public void | setNamespaces(Map namespaces) Set the XML namespaces at this action node in the SCXML document. |
final public void | setNext(String next) Set the transition target by specifying its ID. |
final public void | setTarget(TransitionTarget target) Set the transition target. |