public class ConnectableElementEndMatcher extends BaseMatcher<ConnectableElementEndMatch>
Use the pattern matcher on a given model via on(ViatraQueryEngine)
,
e.g. in conjunction with ViatraQueryEngine#on(Notifier)
.
Matches of the pattern will be represented as ConnectableElementEndMatch
.
Original source:
(inherit(parents()- >collect(inheritableMembers(self))- >asSet()))
// Can't compile OCL to VIATRA Query because of java.lang.UnsupportedOperationException: parents
// @Surrogate(feature = "inheritedMember")
// @QueryExplorer(checked = false)
//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 VIATRA Query because of java.lang.UnsupportedOperationException: allRealizedInterfaces
// @Surrogate(feature = "provided")
// @QueryExplorer(checked = false)
//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 VIATRA Query because of java.lang.UnsupportedOperationException: allUsedInterfaces
// @Surrogate(feature = "required")
// @QueryExplorer(checked = false)
//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
engine, querySpecification
Modifier and Type | Method and Description |
---|---|
protected ConnectableElementEndMatch |
arrayToMatch(java.lang.Object[] match)
Converts the array representation of a pattern match to an immutable Match object.
|
protected ConnectableElementEndMatch |
arrayToMatchMutable(java.lang.Object[] match)
Converts the array representation of a pattern match to a mutable Match object.
|
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.
|
static ConnectableElementEndMatcher |
create() |
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(ViatraQueryEngine engine)
Initializes the pattern matcher within an existing VIATRA Query engine.
|
static IQuerySpecification<ConnectableElementEndMatcher> |
querySpecification() |
protected java.util.Set<org.eclipse.uml2.uml.ConnectableElement> |
rawAccumulateAllValuesOfself(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for self.
|
protected java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> |
rawAccumulateAllValuesOftemp1(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for temp1.
|
protected ConnectableElementEndMatch |
tupleToMatch(Tuple t) |
countMatches, countMatches, emptyArray, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getCapabilities, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, matchToArray, newEmptyMatch, newMatch, rawAccumulateAllValues, rawCountMatches, rawForEachMatch, rawForOneArbitraryMatch, rawGetAllMatches, rawGetAllValues, rawGetOneArbitraryMatch, rawHasMatch, setBackend
public static ConnectableElementEndMatcher on(ViatraQueryEngine engine) throws ViatraQueryException
engine
- the existing VIATRA Query engine in which this matcher will be created.ViatraQueryException
- if an error occurs during pattern matcher creationpublic static ConnectableElementEndMatcher create() throws ViatraQueryException
ViatraQueryException
- 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.protected java.util.Set<org.eclipse.uml2.uml.ConnectableElement> rawAccumulateAllValuesOfself(java.lang.Object[] parameters)
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)
protected java.util.Set<org.eclipse.uml2.uml.ConnectorEnd> rawAccumulateAllValuesOftemp1(java.lang.Object[] parameters)
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)
protected ConnectableElementEndMatch tupleToMatch(Tuple t)
tupleToMatch
in class BaseMatcher<ConnectableElementEndMatch>
protected ConnectableElementEndMatch arrayToMatch(java.lang.Object[] match)
BaseMatcher
arrayToMatch
in class BaseMatcher<ConnectableElementEndMatch>
protected ConnectableElementEndMatch arrayToMatchMutable(java.lang.Object[] match)
BaseMatcher
arrayToMatchMutable
in class BaseMatcher<ConnectableElementEndMatch>
public static IQuerySpecification<ConnectableElementEndMatcher> querySpecification() throws ViatraQueryException
ViatraQueryException
- if the pattern definition could not be loaded