|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of StateModelConfigurationException in com.codexombie.jspasm |
---|
Methods in com.codexombie.jspasm that throw StateModelConfigurationException | |
---|---|
void |
Model.addEventSpec(java.lang.String eventSpecId,
java.lang.Class[] argClasses)
Adds an event spec to the model, where the event's arguments are defined by a class array. |
void |
Model.addEventSpec(java.lang.String eventSpecId,
java.lang.String classListString)
Adds an event spec to the model, where the event's arguments are defined by a comma/space-separated String of fully-qualified class names. |
void |
Model.addExcursionTransition(java.lang.String startStateId,
java.lang.String eventSpecId,
java.lang.String endStateId)
Add an EXCURSION transition. |
void |
Model.addIgnoreTransition(java.lang.String startStateId,
java.lang.String eventSpecId)
Add an IGNORE transition. |
void |
Engine.addModel(Model model)
Add a model to the Engine's internal data. |
void |
Model.addNoExecuteTransition(java.lang.String startStateId,
java.lang.String eventSpecId,
java.lang.String endStateId)
Add a NO_EXECUTE transition. |
void |
Model.addNormalTransition(java.lang.String startStateId,
java.lang.String eventSpecId,
java.lang.String endStateId)
Add an NORMAL transition. |
void |
Model.addState(java.lang.String stateId,
java.lang.String methodName,
java.lang.Class[] argClasses)
Adds a state to the model, where the state's arguments are defined by a class array. |
void |
Model.addState(java.lang.String stateId,
java.lang.String methodName,
java.lang.String classListString)
Adds a state to the model, where the state's arguments are defined by a comma/space-separated String of fully-qualified class names. |
void |
Model.addTransition(java.lang.String startStateId,
java.lang.String eventSpecId,
java.lang.String endStateId,
int transitionType)
Add a transition to the model. |
void |
Model.setEntityClass(java.lang.Class entityClass)
Set the entity class associated with the model. |
void |
Model.setEntityClass(java.lang.String entityClassName)
Set the entity class associated with the model. |
void |
Model.setInitialState(java.lang.String initialStateId)
Set the initial state for new entities created in this model. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |