public class VertexIncomingMatcher extends BaseMatcher<VertexIncomingMatch>
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 VertexIncomingMatch
.
Original source:
(if extendedSignature- >isEmpty() then Set{} else extendedSignature.parameter- >asSet() endif)
// Can't compile OCL to VIATRA Query because of java.lang.NullPointerException
// @Surrogate(feature = "inheritedParameter")
// @QueryExplorer(checked = false)
//pattern redefinableTemplateSignatureInheritedParameter(source: RedefinableTemplateSignature, target: TemplateParameter) {}
(region- >size () > 1)
// Can't compile OCL to VIATRA Query because of java.lang.UnsupportedOperationException: size
// @Surrogate(feature = "isOrthogonal")
// @QueryExplorer(checked = false)
//pattern stateIsOrthogonal(source: State, target: Boolean) {}
((region- >isEmpty()) and not isSubmachineState())
// Can't compile OCL to VIATRA Query because of java.lang.UnsupportedOperationException: isSubmachineState
// @Surrogate(feature = "isSimple")
// @QueryExplorer(checked = false)
//pattern stateIsSimple(source: State, target: Boolean) {}
(submachine < > null)
// Can't compile OCL to VIATRA Query because of java.lang.IllegalArgumentException: Unhandled parameter types: [null]
// @Surrogate(feature = "isSubmachineState")
// @QueryExplorer(checked = false)
//pattern stateIsSubmachineState(source: State, target: Boolean) {}
(self.containingProfile())
// Can't compile OCL to VIATRA Query because of java.lang.UnsupportedOperationException: containingProfile
// @Surrogate(feature = "profile")
// @QueryExplorer(checked = false)
//pattern stereotypeProfile(source: Stereotype, target: Profile) {}
(Transition.allInstances()- >select(target=self))
@Surrogate(feature = "incoming")
@QueryExplorer(checked = false)
pattern vertexIncoming(
self : Vertex,
temp1 : Transition
) {
Transition.target(temp1, vertex);
vertex == self;
Transition(transition);
temp1 == transition;
}
VertexIncomingMatch
,
VertexIncomingProcessor
,
VertexIncomingQuerySpecification
engine, querySpecification
Modifier and Type | Method and Description |
---|---|
protected VertexIncomingMatch |
arrayToMatch(java.lang.Object[] match)
Converts the array representation of a pattern match to an immutable Match object.
|
protected VertexIncomingMatch |
arrayToMatchMutable(java.lang.Object[] match)
Converts the array representation of a pattern match to a mutable Match object.
|
int |
countMatches(org.eclipse.uml2.uml.Vertex pSelf,
org.eclipse.uml2.uml.Transition pTemp1)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
static VertexIncomingMatcher |
create() |
void |
forEachMatch(org.eclipse.uml2.uml.Vertex pSelf,
org.eclipse.uml2.uml.Transition pTemp1,
IMatchProcessor<? super VertexIncomingMatch> 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.Vertex pSelf,
org.eclipse.uml2.uml.Transition pTemp1,
IMatchProcessor<? super VertexIncomingMatch> 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<VertexIncomingMatch> |
getAllMatches(org.eclipse.uml2.uml.Vertex pSelf,
org.eclipse.uml2.uml.Transition 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.Vertex> |
getAllValuesOfself()
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.Vertex> |
getAllValuesOfself(org.eclipse.uml2.uml.Transition pTemp1)
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.Vertex> |
getAllValuesOfself(VertexIncomingMatch partialMatch)
Retrieve the set of values that occur in matches for self.
|
java.util.Set<org.eclipse.uml2.uml.Transition> |
getAllValuesOftemp1()
Retrieve the set of values that occur in matches for temp1.
|
java.util.Set<org.eclipse.uml2.uml.Transition> |
getAllValuesOftemp1(org.eclipse.uml2.uml.Vertex pSelf)
Retrieve the set of values that occur in matches for temp1.
|
java.util.Set<org.eclipse.uml2.uml.Transition> |
getAllValuesOftemp1(VertexIncomingMatch partialMatch)
Retrieve the set of values that occur in matches for temp1.
|
VertexIncomingMatch |
getOneArbitraryMatch(org.eclipse.uml2.uml.Vertex pSelf,
org.eclipse.uml2.uml.Transition 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.Vertex pSelf,
org.eclipse.uml2.uml.Transition 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).
|
VertexIncomingMatch |
newMatch(org.eclipse.uml2.uml.Vertex pSelf,
org.eclipse.uml2.uml.Transition pTemp1)
Returns a new (partial) match.
|
static VertexIncomingMatcher |
on(ViatraQueryEngine engine)
Initializes the pattern matcher within an existing VIATRA Query engine.
|
static IQuerySpecification<VertexIncomingMatcher> |
querySpecification() |
protected java.util.Set<org.eclipse.uml2.uml.Vertex> |
rawAccumulateAllValuesOfself(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for self.
|
protected java.util.Set<org.eclipse.uml2.uml.Transition> |
rawAccumulateAllValuesOftemp1(java.lang.Object[] parameters)
Retrieve the set of values that occur in matches for temp1.
|
protected VertexIncomingMatch |
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 VertexIncomingMatcher 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 VertexIncomingMatcher create() throws ViatraQueryException
ViatraQueryException
- if an error occurs during pattern matcher creationpublic java.util.Collection<VertexIncomingMatch> getAllMatches(org.eclipse.uml2.uml.Vertex pSelf, org.eclipse.uml2.uml.Transition 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 VertexIncomingMatch getOneArbitraryMatch(org.eclipse.uml2.uml.Vertex pSelf, org.eclipse.uml2.uml.Transition 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.Vertex pSelf, org.eclipse.uml2.uml.Transition 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.Vertex pSelf, org.eclipse.uml2.uml.Transition 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.Vertex pSelf, org.eclipse.uml2.uml.Transition pTemp1, IMatchProcessor<? super VertexIncomingMatch> 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.Vertex pSelf, org.eclipse.uml2.uml.Transition pTemp1, IMatchProcessor<? super VertexIncomingMatch> 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 VertexIncomingMatch newMatch(org.eclipse.uml2.uml.Vertex pSelf, org.eclipse.uml2.uml.Transition 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.Vertex> rawAccumulateAllValuesOfself(java.lang.Object[] parameters)
public java.util.Set<org.eclipse.uml2.uml.Vertex> getAllValuesOfself()
public java.util.Set<org.eclipse.uml2.uml.Vertex> getAllValuesOfself(VertexIncomingMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.Vertex> getAllValuesOfself(org.eclipse.uml2.uml.Transition pTemp1)
protected java.util.Set<org.eclipse.uml2.uml.Transition> rawAccumulateAllValuesOftemp1(java.lang.Object[] parameters)
public java.util.Set<org.eclipse.uml2.uml.Transition> getAllValuesOftemp1()
public java.util.Set<org.eclipse.uml2.uml.Transition> getAllValuesOftemp1(VertexIncomingMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.Transition> getAllValuesOftemp1(org.eclipse.uml2.uml.Vertex pSelf)
protected VertexIncomingMatch tupleToMatch(Tuple t)
tupleToMatch
in class BaseMatcher<VertexIncomingMatch>
protected VertexIncomingMatch arrayToMatch(java.lang.Object[] match)
BaseMatcher
arrayToMatch
in class BaseMatcher<VertexIncomingMatch>
protected VertexIncomingMatch arrayToMatchMutable(java.lang.Object[] match)
BaseMatcher
arrayToMatchMutable
in class BaseMatcher<VertexIncomingMatch>
public static IQuerySpecification<VertexIncomingMatcher> querySpecification() throws ViatraQueryException
ViatraQueryException
- if the pattern definition could not be loaded