Interface ISimEngineFactory
-
- All Known Implementing Classes:
DesmoJSimEngineFactory
,SSJSimEngineFactory
public interface ISimEngineFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEntity
createEntity(AbstractSimEntityDelegator e, String name)
<E extends IEntity>
ISimEvent<E>createSimEvent(AbstractSimEventDelegator<E> myEvent, String name)
ISimProcess
createSimProcess(AbstractSimProcessDelegator myProcess, String name)
ISimulationControl
createSimulationControl()
void
setModel(ISimulationModel model)
-
-
-
Method Detail
-
setModel
void setModel(ISimulationModel model)
-
createSimulationControl
ISimulationControl createSimulationControl()
-
createSimProcess
ISimProcess createSimProcess(AbstractSimProcessDelegator myProcess, String name)
-
createSimEvent
<E extends IEntity> ISimEvent<E> createSimEvent(AbstractSimEventDelegator<E> myEvent, String name)
-
createEntity
IEntity createEntity(AbstractSimEntityDelegator e, String name)
-
-