public class DeploymentTargetDeployedElementMatcher extends BaseMatcher<DeploymentTargetDeployedElementMatch>
Use the pattern matcher on a given model via on(IncQueryEngine)
,
e.g. in conjunction with IncQueryEngine.on(Notifier)
.
Matches of the pattern will be represented as DeploymentTargetDeployedElementMatch
.
Original source:
(if connector.type = null
then
null
else
let index : Integer = connector.end- >indexOf(self) in
connector.type.memberEnd- >at(index)
endif)
// Can't compile OCL to IncQuery because of org.eclipse.ocl.SemanticException: Unrecognized variable: (connector)
// @Surrogate(feature = "definingEnd")
//pattern connectorEndDefiningEnd(source: ConnectorEnd, target: Property) {}
(deployment.deployedArtifact- >select(oclIsKindOf(Artifact))- >collect(oclAsType(Artifact).manifestation)- >collect(utilizedElement)- >asSet())
@Surrogate(feature = "deployedElement")
@QueryExplorer(checked = false)
pattern deploymentTargetDeployedElement(
self : DeploymentTarget,
packageableElement : PackageableElement
) {
Artifact(artifact);
temp2 == artifact;
DeploymentTarget.deployment(self, deployment);
temp1 == deployment;
Deployment.deployedArtifact(temp1, deployedArtifact);
temp2 == deployedArtifact;
temp3 == temp2;
Artifact.manifestation(temp3, manifestation);
temp4 == manifestation;
Manifestation.utilizedElement(temp4, packageableElement);
}
DeploymentTargetDeployedElementMatch
,
DeploymentTargetDeployedElementProcessor
,
DeploymentTargetDeployedElementQuerySpecification
Constructor and Description |
---|
DeploymentTargetDeployedElementMatcher(IncQueryEngine engine)
Deprecated.
use
on(IncQueryEngine) instead |
DeploymentTargetDeployedElementMatcher(org.eclipse.emf.common.notify.Notifier emfRoot)
Deprecated.
use
on(IncQueryEngine) instead, e.g. in conjunction with IncQueryEngine.on(Notifier) |
Modifier and Type | Method and Description |
---|---|
int |
countMatches(org.eclipse.uml2.uml.DeploymentTarget pSelf,
org.eclipse.uml2.uml.PackageableElement pPackageableElement)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
void |
forEachMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf,
org.eclipse.uml2.uml.PackageableElement pPackageableElement,
IMatchProcessor<? super DeploymentTargetDeployedElementMatch> processor)
Executes the given processor on each match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
forOneArbitraryMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf,
org.eclipse.uml2.uml.PackageableElement pPackageableElement,
IMatchProcessor<? super DeploymentTargetDeployedElementMatch> processor)
Executes the given processor on an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
java.util.Collection<DeploymentTargetDeployedElementMatch> |
getAllMatches(org.eclipse.uml2.uml.DeploymentTarget pSelf,
org.eclipse.uml2.uml.PackageableElement pPackageableElement)
Returns the set of all matches of the pattern that conform to the given fixed values of some parameters.
|
java.util.Set<org.eclipse.uml2.uml.PackageableElement> |
getAllValuesOfpackageableElement()
Retrieve the set of values that occur in matches for packageableElement.
|
java.util.Set<org.eclipse.uml2.uml.PackageableElement> |
getAllValuesOfpackageableElement(org.eclipse.uml2.uml.DeploymentTarget pSelf)
Retrieve the set of values that occur in matches for packageableElement.
|
java.util.Set<org.eclipse.uml2.uml.PackageableElement> |
getAllValuesOfpackageableElement(DeploymentTargetDeployedElementMatch partialMatch)
Retrieve the set of values that occur in matches for packageableElement.
|
java.util.Set<org.eclipse.uml2.uml.DeploymentTarget> |
getAllValuesOfself()
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.DeploymentTarget> |
getAllValuesOfself(DeploymentTargetDeployedElementMatch partialMatch)
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.DeploymentTarget> |
getAllValuesOfself(org.eclipse.uml2.uml.PackageableElement pPackageableElement)
Retrieve the set of values that occur in matches for self.
|
DeploymentTargetDeployedElementMatch |
getOneArbitraryMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf,
org.eclipse.uml2.uml.PackageableElement pPackageableElement)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf,
org.eclipse.uml2.uml.PackageableElement pPackageableElement)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
DeploymentTargetDeployedElementMatch |
newMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf,
org.eclipse.uml2.uml.PackageableElement pPackageableElement)
Returns a new (partial) match.
|
static DeploymentTargetDeployedElementMatcher |
on(IncQueryEngine engine)
Initializes the pattern matcher within an existing EMF-IncQuery engine.
|
static IQuerySpecification<DeploymentTargetDeployedElementMatcher> |
querySpecification() |
countMatches, countMatches, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, newEmptyMatch, newMatch
@Deprecated public DeploymentTargetDeployedElementMatcher(org.eclipse.emf.common.notify.Notifier emfRoot) throws IncQueryException
on(IncQueryEngine)
instead, e.g. in conjunction with IncQueryEngine.on(Notifier)
The matcher will be created within the managed IncQueryEngine
belonging to the EMF model root, so
multiple matchers will reuse the same engine and benefit from increased performance and reduced memory footprint.
emfRoot
- the root of the EMF containment hierarchy where the pattern matcher will operate. Recommended: Resource or ResourceSet.IncQueryException
- if an error occurs during pattern matcher creation@Deprecated public DeploymentTargetDeployedElementMatcher(IncQueryEngine engine) throws IncQueryException
on(IncQueryEngine)
insteadengine
- the existing EMF-IncQuery engine in which this matcher will be created.IncQueryException
- if an error occurs during pattern matcher creationpublic static DeploymentTargetDeployedElementMatcher on(IncQueryEngine engine) throws IncQueryException
engine
- the existing EMF-IncQuery engine in which this matcher will be created.IncQueryException
- if an error occurs during pattern matcher creationpublic java.util.Collection<DeploymentTargetDeployedElementMatch> getAllMatches(org.eclipse.uml2.uml.DeploymentTarget pSelf, org.eclipse.uml2.uml.PackageableElement pPackageableElement)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pPackageableElement
- the fixed value of pattern parameter packageableElement, or null if not bound.public DeploymentTargetDeployedElementMatch getOneArbitraryMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf, org.eclipse.uml2.uml.PackageableElement pPackageableElement)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pPackageableElement
- the fixed value of pattern parameter packageableElement, or null if not bound.public boolean hasMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf, org.eclipse.uml2.uml.PackageableElement pPackageableElement)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pPackageableElement
- the fixed value of pattern parameter packageableElement, or null if not bound.public int countMatches(org.eclipse.uml2.uml.DeploymentTarget pSelf, org.eclipse.uml2.uml.PackageableElement pPackageableElement)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pPackageableElement
- the fixed value of pattern parameter packageableElement, or null if not bound.public void forEachMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf, org.eclipse.uml2.uml.PackageableElement pPackageableElement, IMatchProcessor<? super DeploymentTargetDeployedElementMatch> processor)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pPackageableElement
- the fixed value of pattern parameter packageableElement, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf, org.eclipse.uml2.uml.PackageableElement pPackageableElement, IMatchProcessor<? super DeploymentTargetDeployedElementMatch> processor)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pPackageableElement
- the fixed value of pattern parameter packageableElement, or null if not bound.processor
- the action that will process the selected match.public DeploymentTargetDeployedElementMatch newMatch(org.eclipse.uml2.uml.DeploymentTarget pSelf, org.eclipse.uml2.uml.PackageableElement pPackageableElement)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch()
to obtain a mutable match object.
pSelf
- the fixed value of pattern parameter self, or null if not bound.pPackageableElement
- the fixed value of pattern parameter packageableElement, or null if not bound.public java.util.Set<org.eclipse.uml2.uml.DeploymentTarget> getAllValuesOfself()
public java.util.Set<org.eclipse.uml2.uml.DeploymentTarget> getAllValuesOfself(DeploymentTargetDeployedElementMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.DeploymentTarget> getAllValuesOfself(org.eclipse.uml2.uml.PackageableElement pPackageableElement)
public java.util.Set<org.eclipse.uml2.uml.PackageableElement> getAllValuesOfpackageableElement()
public java.util.Set<org.eclipse.uml2.uml.PackageableElement> getAllValuesOfpackageableElement(DeploymentTargetDeployedElementMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.PackageableElement> getAllValuesOfpackageableElement(org.eclipse.uml2.uml.DeploymentTarget pSelf)
public static IQuerySpecification<DeploymentTargetDeployedElementMatcher> querySpecification() throws IncQueryException
IncQueryException
- if the pattern definition could not be loaded