Class SimulationElement
- java.lang.Object
-
- de.uka.ipd.sdq.simulation.abstractsimengine.SimulationElement
-
- Type Parameters:
M
- the type of the simulation model
- Direct Known Subclasses:
AbstractSimEntityDelegator
,AbstractSimEventDelegator
public abstract class SimulationElement extends Object
A simulation element is a named object which is a part of the simulation model and, as such, needs access to the implementation class of theISimulationModel
interface.
-
-
Constructor Summary
Constructors Constructor Description SimulationElement(ISimulationModel model, String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ISimulationModel
getModel()
Returns the simulation model.String
getName()
Returns the name of this simulation element.
-
-
-
Constructor Detail
-
SimulationElement
public SimulationElement(ISimulationModel model, String name)
-
-
Method Detail
-
getName
public String getName()
Returns the name of this simulation element.
-
getModel
public ISimulationModel getModel()
Returns the simulation model.
-
-