com.sun.corba.se.spi.orbutil.fsm |
|
Java Source File Name | Type | Comment |
Action.java | Interface | |
ActionBase.java | Class | |
FSM.java | Interface | An FSM is used to represent an instance of a finite state machine
which has a transition function represented by an instance of
StateEngine. |
FSMImpl.java | Class | This is the main class that represents an instance of a state machine
using a state engine. |
FSMTest.java | Class | |
Guard.java | Interface | |
GuardBase.java | Class | |
Input.java | Interface | This interface must be implemented by any class that is used as
an input to a FSM. |
InputImpl.java | Class | |
State.java | Interface | This interface must be implemented by any class that is used as
a state in a FSM. |
StateEngine.java | Interface | A StateEngine defines the state transition function for a
finite state machine (FSM). |
StateEngineFactory.java | Class | Factory for creating the standard state machine implementation. |
StateImpl.java | Class | Base class for all states in a StateEngine. |