Interface ISimEngineFactory
-
- All Known Implementing Classes:
DesmoJSimEngineFactory,SSJSimEngineFactory
public interface ISimEngineFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEntitycreateEntity(AbstractSimEntityDelegator e, String name)<E extends IEntity>
ISimEvent<E>createSimEvent(AbstractSimEventDelegator<E> myEvent, String name)ISimProcesscreateSimProcess(AbstractSimProcessDelegator myProcess, String name)ISimulationControlcreateSimulationControl()voidsetModel(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)
-
-