Package | Description |
---|---|
com.sun.corba.se.impl.orbutil.fsm | |
com.sun.corba.se.spi.orbutil.fsm |
Modifier and Type | Class and Description |
---|---|
class |
StateEngineImpl
Encodes the state transition function for a finite state machine.
|
Modifier and Type | Method and Description |
---|---|
StateEngine |
StateEngineImpl.add(State oldState,
Input input,
Action action,
State newState) |
StateEngine |
StateEngineImpl.add(State oldState,
Input input,
Guard guard,
Action action,
State newState) |
StateEngine |
StateEngineImpl.setDefault(State oldState) |
StateEngine |
StateEngineImpl.setDefault(State oldState,
Action action,
State newState) |
StateEngine |
StateEngineImpl.setDefault(State oldState,
State newState) |
Modifier and Type | Method and Description |
---|---|
StateEngine |
StateEngine.add(State oldState,
Input input,
Action action,
State newState)
Add a transition with a guard that always evaluates to true.
|
StateEngine |
StateEngine.add(State oldState,
Input input,
Guard guard,
Action action,
State newState)
Add a new transition (old,in,guard,act,new) to the state engine.
|
static StateEngine |
StateEngineFactory.create() |
StateEngine |
StateEngine.setDefault(State oldState)
Euaivalent to setDefault( oldState, oldState )
|
StateEngine |
StateEngine.setDefault(State oldState,
Action action,
State newState)
Set the default transition and action for a state.
|
StateEngine |
StateEngine.setDefault(State oldState,
State newState)
Equivalent to setDefault( oldState, act, newState ) where act is an
action that does nothing.
|
Constructor and Description |
---|
FSMImpl(StateEngine se,
State startState)
Create an instance of an FSM using the StateEngine
in a particular start state.
|
FSMImpl(StateEngine se,
State startState,
boolean debug) |
Copyright © 2021 JBoss by Red Hat. All rights reserved.