Class WeavingLocation
- java.lang.Object
-
- edu.kit.ipd.are.dsexplore.featurecompletions.weaver.strategy.WeavingLocation
-
public final class WeavingLocation extends Object
This class is a container for the informations of the weaving location.
-
-
Constructor Summary
Constructors Constructor Description WeavingLocation(List<? extends org.palladiosimulator.pcm.repository.OperationSignature> affectedSignatures, org.palladiosimulator.pcm.core.composition.Connector location)
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<? extends org.palladiosimulator.pcm.repository.OperationSignature>
getAffectedSignatures()
The getter-method for the affected signatures.org.palladiosimulator.pcm.core.composition.Connector
getLocation()
The getter-method for the weaving location.
-
-
-
Constructor Detail
-
WeavingLocation
public WeavingLocation(List<? extends org.palladiosimulator.pcm.repository.OperationSignature> affectedSignatures, org.palladiosimulator.pcm.core.composition.Connector location)
The constructor.- Parameters:
affectedSignatures
- - Contains all signatures that need to be considered during the weaving process.location
- - Represents the concrete location that needs to be woven.
-
-
Method Detail
-
getAffectedSignatures
public List<? extends org.palladiosimulator.pcm.repository.OperationSignature> getAffectedSignatures()
The getter-method for the affected signatures.- Returns:
- the affected signatures.
-
getLocation
public org.palladiosimulator.pcm.core.composition.Connector getLocation()
The getter-method for the weaving location.- Returns:
- the weaving location.
-
-