Interface ISimulatedModelEntityAccess<ModelEntity extends de.uka.ipd.sdq.identifier.Identifier,SimulatedModelEntityType>
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ISimulatedModelEntityAccess<ModelEntity extends de.uka.ipd.sdq.identifier.Identifier,SimulatedModelEntityType>
Through the ISimulatedModelEntityAccess interface it is possible to access the current simulation entity responsible for a particular entity of the model. Furthermore, this interfaces allows for multiple contexts to share the same lookup information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SimulatedModelEntityType
getSimulatedEntity(String modelEntityIdentifier)
Gets the simulation entity for the model entity identified by the provided id.default SimulatedModelEntityType
getSimulatedEntity(ModelEntity modelEntity)
Gets the simulation entity for the model entity.
-
-
-
Method Detail
-
getSimulatedEntity
SimulatedModelEntityType getSimulatedEntity(String modelEntityIdentifier)
Gets the simulation entity for the model entity identified by the provided id.
-
getSimulatedEntity
default SimulatedModelEntityType getSimulatedEntity(ModelEntity modelEntity)
Gets the simulation entity for the model entity.
-
-