ConForM.CoopnTools.CoKer.ScenarioVisual
Interface ScenarioGraphicalStateHolder

All Known Implementing Classes:
ScenarioGraphicalState

public interface ScenarioGraphicalStateHolder

Scenario graphical element holding a state.


Method Summary
 boolean isInitial()
          Get the initial status of this state.
 boolean isTotallyExplored()
          Get the totally explored status of this state.
 void setInitial(boolean initial)
          Set the initial status of this state.
 void setTotallyExplored(boolean totallyExplored)
          Set the totally explored status of this state.
 State state()
          Get the state associated to this GraphicalElement, or null if no state is associated to this element.
 

Method Detail

state

public State state()
Get the state associated to this GraphicalElement, or null if no state is associated to this element.

isInitial

public boolean isInitial()
Get the initial status of this state. True means an initial state.

setInitial

public void setInitial(boolean initial)
Set the initial status of this state. True means an initial state.

isTotallyExplored

public boolean isTotallyExplored()
Get the totally explored status of this state. True means totally explored.

setTotallyExplored

public void setTotallyExplored(boolean totallyExplored)
Set the totally explored status of this state. True means totally explored.