Package | Description |
---|---|
fr.lri.swingstates.debug |
A package containing listeners for state machine and a graphical widget to visualize state machines while they are running.
|
Modifier and Type | Method and Description |
---|---|
void |
StateMachineEventListener.smInited(StateMachineEvent e)
Invoked when the state machine has been inited.
|
void |
StateMachineEventAdapter.smInited(StateMachineEvent e)
Invoked when the state machine has been inited.
|
void |
StateMachineEventListener.smReset(StateMachineEvent e)
Invoked when the state machine has been reset.
|
void |
StateMachineEventAdapter.smReset(StateMachineEvent e)
Invoked when the state machine has been reset.
|
void |
StateMachineEventListener.smResumed(StateMachineEvent e)
Invoked when the state machine has been resumed.
|
void |
StateMachineEventAdapter.smResumed(StateMachineEvent e)
Invoked when the state machine has been resumed.
|
void |
StateMachineEventListener.smStateChanged(StateMachineEvent e)
Invoked when the state machine has fired a transition changing the current state.
|
void |
StateMachineEventAdapter.smStateChanged(StateMachineEvent e)
Invoked when the state machine has fired a transition changing the current state.
|
void |
StateMachineEventListener.smStateLooped(StateMachineEvent e)
Invoked when the state machine has fired a transition making it loop on the current state.
|
void |
StateMachineEventAdapter.smStateLooped(StateMachineEvent e)
Invoked when the state machine has fired a transition making it loop on the current state.
|
void |
StateMachineEventListener.smSuspended(StateMachineEvent e)
Invoked when the state machine has been suspended.
|
void |
StateMachineEventAdapter.smSuspended(StateMachineEvent e)
Invoked when the state machine has been suspended.
|