public class ConnectableElementEndMatcher extends BaseMatcher<ConnectableElementEndMatch>
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 ConnectableElementEndMatch
.
Original source:
(inherit(parents()- >collect(inheritableMembers(self))- >asSet()))
// Can't compile OCL to IncQuery because of java.lang.UnsupportedOperationException: parents
// @Surrogate(feature = "inheritedMember")
//pattern classifierInheritedMember(source: Classifier, target: NamedElement) {}
(let ris : Set(Interface) = allRealizedInterfaces(),
realizingClassifiers : Set(Classifier) = self.realization.realizingClassifier- >union(self.allParents()- >collect(realization.realizingClassifier))- >asSet(),
allRealizingClassifiers : Set(Classifier) = realizingClassifiers- >union(realizingClassifiers.allParents())- >asSet(),
realizingClassifierInterfaces : Set(Interface) = allRealizingClassifiers- >iterate(c; rci : Set(Interface) = Set{} | rci- >union(c.allRealizedInterfaces())),
ports : Set(Port) = self.ownedPort- >union(allParents()- >collect(ownedPort))- >asSet(),
providedByPorts : Set(Interface) = ports.provided- >asSet()
in ris- >union(realizingClassifierInterfaces) - >union(providedByPorts)- >asSet())
// Can't compile OCL to IncQuery because of java.lang.UnsupportedOperationException: allRealizedInterfaces
// @Surrogate(feature = "provided")
//pattern componentProvided(source: Component, target: Interface) {}
(let uis : Set(Interface) = allUsedInterfaces(),
realizingClassifiers : Set(Classifier) = self.realization.realizingClassifier- >union(self.allParents()- >collect(realization.realizingClassifier))- >asSet(),
allRealizingClassifiers : Set(Classifier) = realizingClassifiers- >union(realizingClassifiers.allParents())- >asSet(),
realizingClassifierInterfaces : Set(Interface) = allRealizingClassifiers- >iterate(c; rci : Set(Interface) = Set{} | rci- >union(c.allUsedInterfaces())),
ports : Set(Port) = self.ownedPort- >union(allParents()- >collect(ownedPort))- >asSet(),
usedByPorts : Set(Interface) = ports.required- >asSet()
in uis- >union(realizingClassifierInterfaces)- >union(usedByPorts)- >asSet()
)
// Can't compile OCL to IncQuery because of java.lang.UnsupportedOperationException: allUsedInterfaces
// @Surrogate(feature = "required")
//pattern componentRequired(source: Component, target: Interface) {}
(ConnectorEnd.allInstances()- >select(role = self))
@Surrogate(feature = "end")
@QueryExplorer(checked = false)
pattern connectableElementEnd(
self : ConnectableElement,
temp1 : ConnectorEnd
) {
ConnectorEnd.role(temp1, connectableElement);
connectableElement == self;
ConnectorEnd(connectorEnd);
temp1 == connectorEnd;
}
ConnectableElementEndMatch
,
ConnectableElementEndProcessor
,
ConnectableElementEndQuerySpecification
Constructor and Description |
---|
ConnectableElementEndMatcher(IncQueryEngine engine)
Deprecated.
use
on(IncQueryEngine) instead |
ConnectableElementEndMatcher(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.ConnectableElement pSelf,
org.eclipse.uml2.uml.ConnectorEnd pTemp1)
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.ConnectableElement pSelf,
org.eclipse.uml2.uml.ConnectorEnd pTemp1,
IMatchProcessor<? super ConnectableElementEndMatch> 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.ConnectableElement pSelf,
org.eclipse.uml2.uml.ConnectorEnd pTemp1,
IMatchProcessor<? super ConnectableElementEndMatch> 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<ConnectableElementEndMatch> |
getAllMatches(org.eclipse.uml2.uml.ConnectableElement pSelf,
org.eclipse.uml2.uml.ConnectorEnd pTemp1)
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.ConnectableElement> |
getAllValuesOfself()
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.ConnectableElement> |
getAllValuesOfself(ConnectableElementEndMatch partialMatch)
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.ConnectableElement> |
getAllValuesOfself(org.eclipse.uml2.uml.ConnectorEnd pTemp1)
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> |
getAllValuesOftemp1()
Retrieve the set of values that occur in matches for temp1.
|
java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> |
getAllValuesOftemp1(org.eclipse.uml2.uml.ConnectableElement pSelf)
Retrieve the set of values that occur in matches for temp1.
|
java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> |
getAllValuesOftemp1(ConnectableElementEndMatch partialMatch)
Retrieve the set of values that occur in matches for temp1.
|
ConnectableElementEndMatch |
getOneArbitraryMatch(org.eclipse.uml2.uml.ConnectableElement pSelf,
org.eclipse.uml2.uml.ConnectorEnd pTemp1)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(org.eclipse.uml2.uml.ConnectableElement pSelf,
org.eclipse.uml2.uml.ConnectorEnd pTemp1)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
ConnectableElementEndMatch |
newMatch(org.eclipse.uml2.uml.ConnectableElement pSelf,
org.eclipse.uml2.uml.ConnectorEnd pTemp1)
Returns a new (partial) match.
|
static ConnectableElementEndMatcher |
on(IncQueryEngine engine)
Initializes the pattern matcher within an existing EMF-IncQuery engine.
|
static IQuerySpecification<ConnectableElementEndMatcher> |
querySpecification() |
countMatches, countMatches, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, newEmptyMatch, newMatch
@Deprecated public ConnectableElementEndMatcher(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 ConnectableElementEndMatcher(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 ConnectableElementEndMatcher 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<ConnectableElementEndMatch> getAllMatches(org.eclipse.uml2.uml.ConnectableElement pSelf, org.eclipse.uml2.uml.ConnectorEnd pTemp1)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pTemp1
- the fixed value of pattern parameter temp1, or null if not bound.public ConnectableElementEndMatch getOneArbitraryMatch(org.eclipse.uml2.uml.ConnectableElement pSelf, org.eclipse.uml2.uml.ConnectorEnd pTemp1)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pTemp1
- the fixed value of pattern parameter temp1, or null if not bound.public boolean hasMatch(org.eclipse.uml2.uml.ConnectableElement pSelf, org.eclipse.uml2.uml.ConnectorEnd pTemp1)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pTemp1
- the fixed value of pattern parameter temp1, or null if not bound.public int countMatches(org.eclipse.uml2.uml.ConnectableElement pSelf, org.eclipse.uml2.uml.ConnectorEnd pTemp1)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pTemp1
- the fixed value of pattern parameter temp1, or null if not bound.public void forEachMatch(org.eclipse.uml2.uml.ConnectableElement pSelf, org.eclipse.uml2.uml.ConnectorEnd pTemp1, IMatchProcessor<? super ConnectableElementEndMatch> processor)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pTemp1
- the fixed value of pattern parameter temp1, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(org.eclipse.uml2.uml.ConnectableElement pSelf, org.eclipse.uml2.uml.ConnectorEnd pTemp1, IMatchProcessor<? super ConnectableElementEndMatch> processor)
pSelf
- the fixed value of pattern parameter self, or null if not bound.pTemp1
- the fixed value of pattern parameter temp1, or null if not bound.processor
- the action that will process the selected match.public ConnectableElementEndMatch newMatch(org.eclipse.uml2.uml.ConnectableElement pSelf, org.eclipse.uml2.uml.ConnectorEnd pTemp1)
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.pTemp1
- the fixed value of pattern parameter temp1, or null if not bound.public java.util.Set<org.eclipse.uml2.uml.ConnectableElement> getAllValuesOfself()
public java.util.Set<org.eclipse.uml2.uml.ConnectableElement> getAllValuesOfself(ConnectableElementEndMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.ConnectableElement> getAllValuesOfself(org.eclipse.uml2.uml.ConnectorEnd pTemp1)
public java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> getAllValuesOftemp1()
public java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> getAllValuesOftemp1(ConnectableElementEndMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> getAllValuesOftemp1(org.eclipse.uml2.uml.ConnectableElement pSelf)
public static IQuerySpecification<ConnectableElementEndMatcher> querySpecification() throws IncQueryException
IncQueryException
- if the pattern definition could not be loaded