|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.mitre.sim.api3.exec.State
Enumeration used to charaterize the state of all entities. Entities are
represented as finte state machines. The entity state transition diagram is
here.
Copyright © 2003-2004 The MITRE Corporation
Field Summary | |
static State |
active
State of the entity whose agenda()
is currently being run by the simulation executive. |
static State |
complete
The agenda() invocation has
returned and the entity has no more proactive
or reactive behaviour. |
static State |
dormant
An entity has been created but the agenda()
method invocation has not occured. |
static State |
ready
State of an entity that is ready to run but has yet to be selected by the simulation executive. |
static State |
waitingForEvent
The entity agenda() is waiting
for a trigger to occur or
the invocation of an action method. |
static State |
waitingForTime
The entity agenda() is waiting
for time to pass. |
Method Summary | |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static State active
agenda()
is currently being run by the simulation executive. Only one entity is in
this state at a given time.
public static State ready
public static State waitingForTime
agenda()
is waiting
for time to pass.
At a given time zero or more
entities can be in this state.
public static State waitingForEvent
agenda()
is waiting
for a trigger to occur or
the invocation of an action method.
At a given time zero or more
entities can be in this state.
public static State dormant
agenda()
method invocation has not occured.
public static State complete
agenda()
invocation has
returned and the entity has no more proactive
or reactive behaviour.
Method Detail |
public java.lang.String toString()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |