Package microsim.engine
Interface SimulationManager
-
- All Known Subinterfaces:
SimulationCollectorManager,SimulationObserverManager
- All Known Implementing Classes:
AbstractSimulationCollectorManager,AbstractSimulationManager,AbstractSimulationObserverManager
public interface SimulationManagerThe model deals mainly with specification issues, creating objects, relations between objects, and defining the order of events that take place in the simulation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbuildObjects()voidbuildSchedule()voiddispose()SimulationEnginegetEngine()java.lang.StringgetId()voidsetEngine(SimulationEngine engine)
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
setEngine
void setEngine(SimulationEngine engine)
-
getEngine
SimulationEngine getEngine()
-
buildObjects
void buildObjects()
-
buildSchedule
void buildSchedule()
-
dispose
void dispose()
-
-