| Package | Description |
|---|---|
| com.nosolojava.fsm.model | |
| com.nosolojava.fsm.model.state | |
| com.nosolojava.fsm.model.transition | |
| com.nosolojava.fsm.runtime |
| Modifier and Type | Method and Description |
|---|---|
State |
StateMachineModel.getRootState() |
| Modifier and Type | Method and Description |
|---|---|
State |
State.getParent() |
| Modifier and Type | Method and Description |
|---|---|
List<State> |
State.getBreadCrumb() |
List<State> |
State.getChildrens() |
List<State> |
State.getHistoryStates() |
| Modifier and Type | Method and Description |
|---|---|
Transition |
State.addInternalTransition(State source,
String event,
String targetStatename) |
Transition |
State.addInternalTransition(State source,
String event,
String targetState,
String guarCondition) |
Transition |
State.addTransition(State source,
String event,
String targetStatename) |
Transition |
State.addTransition(State source,
String event,
String targetStatename,
String guardCondition) |
boolean |
State.isDescendant(State otherState) |
| Modifier and Type | Method and Description |
|---|---|
State |
Transition.getSourceState(Context context) |
State |
Transition.getTargetState(Context context) |
| Modifier and Type | Method and Description |
|---|---|
State |
Context.getState(String targetState) |
| Modifier and Type | Method and Description |
|---|---|
SortedSet<State> |
Context.getActiveStates() |
SortedSet<State> |
Context.getStatesToInvoke() |
| Modifier and Type | Method and Description |
|---|---|
void |
Context.addActiveState(State state) |
void |
Context.addStateToInvoke(State state) |
boolean |
Context.isActiveState(State state) |
void |
Context.removeActiveState(State state) |
void |
Context.removeStateToInvoke(State state) |
Copyright © 2015. All rights reserved.