public interface SCXMLListener
SCXML
instances (subscribe to all entry, exit and transition notifications),
State
instances (subscribe to
particular entry and exit notifications) and
Transition
instances (subscribe to
particular transitions).Modifier and Type | Method and Description |
---|---|
void |
onEntry(TransitionTarget state)
Handle the entry into a TransitionTarget.
|
void |
onExit(TransitionTarget state)
Handle the exit out of a TransitionTarget.
|
void |
onTransition(TransitionTarget from,
TransitionTarget to,
Transition transition)
Handle the transition.
|
void onEntry(TransitionTarget state)
state
- The TransitionTarget enteredvoid onExit(TransitionTarget state)
state
- The TransitionTarget exitedvoid onTransition(TransitionTarget from, TransitionTarget to, Transition transition)
from
- The source TransitionTargetto
- The destination TransitionTargettransition
- The Transition takenCopyright © 2005-2012 Apache Software Foundation. All Rights Reserved.