public class VertexIncomingMatcher extends BaseMatcher<VertexIncomingMatch>
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 VertexIncomingMatch
.
Original source:
(if extendedSignature- >isEmpty() then Set{} else extendedSignature.parameter- >asSet() endif)
// Can't compile OCL to IncQuery because of java.lang.NullPointerException
// @Surrogate(feature = "inheritedParameter")
//pattern redefinableTemplateSignatureInheritedParameter(source: RedefinableTemplateSignature, target: TemplateParameter) {}
(region- >size () > 1)
// Can't compile OCL to IncQuery because of java.lang.UnsupportedOperationException: size
// @Surrogate(feature = "isOrthogonal")
//pattern stateIsOrthogonal(source: State, target: Boolean) {}
((region- >isEmpty()) and not isSubmachineState())
// Can't compile OCL to IncQuery because of java.lang.UnsupportedOperationException: isSubmachineState
// @Surrogate(feature = "isSimple")
//pattern stateIsSimple(source: State, target: Boolean) {}
(submachine < > null)
// Can't compile OCL to IncQuery because of java.lang.IllegalArgumentException: Unhandled parameter types: [null]
// @Surrogate(feature = "isSubmachineState")
//pattern stateIsSubmachineState(source: State, target: Boolean) {}
(self.containingProfile())
// Can't compile OCL to IncQuery because of java.lang.UnsupportedOperationException: containingProfile
// @Surrogate(feature = "profile")
//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
Constructor and Description |
---|
VertexIncomingMatcher(IncQueryEngine engine)
Deprecated.
use
on(IncQueryEngine) instead |
VertexIncomingMatcher(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.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.
|
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(IncQueryEngine engine)
Initializes the pattern matcher within an existing EMF-IncQuery engine.
|
static IQuerySpecification<VertexIncomingMatcher> |
querySpecification() |
countMatches, countMatches, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, newEmptyMatch, newMatch
@Deprecated public VertexIncomingMatcher(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 VertexIncomingMatcher(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 VertexIncomingMatcher 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<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.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)
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)
public static IQuerySpecification<VertexIncomingMatcher> querySpecification() throws IncQueryException
IncQueryException
- if the pattern definition could not be loaded