Package de.uka.ipd.sdq.dsexplore.facade
Interface ICreateExtension
-
- All Known Implementing Classes:
FCCCreateExtension
public interface ICreateExtension
Extension part ofIModule
. This part will be during the creation of the model's DoFIs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Choice
getChoice(DegreeOfFreedomInstance degree)
CalculateChoice
for a given DoFI.boolean
shallHandle(DegreeOfFreedomInstance degree)
Indicates whether this extension wants to handle this type of DoFI.
-
-
-
Method Detail
-
shallHandle
boolean shallHandle(DegreeOfFreedomInstance degree)
Indicates whether this extension wants to handle this type of DoFI. In this case PerOpteryx shall invokegetChoice(DegreeOfFreedomInstance)
.- Parameters:
degree
- the degree- Returns:
- the indicator
-
getChoice
Choice getChoice(DegreeOfFreedomInstance degree)
CalculateChoice
for a given DoFI.- Parameters:
degree
- the degree- Returns:
- the chosen choice
-
-