Package org.nuiton.eugene.models.state
Interface StateModelState
-
- All Known Subinterfaces:
StateModelComplexState,StateModelSimpleState,StateModelStateChart
- All Known Implementing Classes:
StateModelComplexeStateImpl,StateModelSimpleStateImpl,StateModelStateChartImpl,StateModelStateImpl
public interface StateModelStateStateModelState.java A state, that can be simple or complexe- Author:
- chatellier
- See Also:
StateModelSimpleState,StateModelComplexState
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Get the state nameList<StateModelTransition>getTransitions()Return the state's transition setbooleanisComplex()State complex status
-
-
-
Method Detail
-
getName
String getName()
Get the state name- Returns:
- state name
-
getTransitions
List<StateModelTransition> getTransitions()
Return the state's transition set- Returns:
- a list of transition
-
isComplex
boolean isComplex()
State complex status- Returns:
- true if the state is complex
-
-