public class ActionContextMatcher extends BaseMatcher<ActionContextMatch>
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 ActionContextMatch
.
Original source:
// Generated
(let behavior: Behavior = self.containingBehavior() in
if behavior=null then null
else if behavior._'context' = null then behavior
else behavior._'context'
endif
endif)
// Can't compile OCL to IncQuery because of java.lang.UnsupportedOperationException: containingBehavior
@Surrogate(feature = "context")
pattern actionContext(source: Action, target: Classifier) {
find actionContainingBehavior(source, behavior);
find behaviorContext(behavior, target);
} or {
find actionContainingBehavior(source, target);
neg find behaviorContext(target, _);
}
ActionContextMatch
,
ActionContextProcessor
,
ActionContextQuerySpecification
Constructor and Description |
---|
ActionContextMatcher(IncQueryEngine engine)
Deprecated.
use
on(IncQueryEngine) instead |
ActionContextMatcher(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.Action pSource,
org.eclipse.uml2.uml.Classifier pTarget)
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.Action pSource,
org.eclipse.uml2.uml.Classifier pTarget,
IMatchProcessor<? super ActionContextMatch> 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.Action pSource,
org.eclipse.uml2.uml.Classifier pTarget,
IMatchProcessor<? super ActionContextMatch> 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<ActionContextMatch> |
getAllMatches(org.eclipse.uml2.uml.Action pSource,
org.eclipse.uml2.uml.Classifier pTarget)
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.Action> |
getAllValuesOfsource()
Retrieve the set of values that occur in matches for source.
|
java.util.Set<org.eclipse.uml2.uml.Action> |
getAllValuesOfsource(ActionContextMatch partialMatch)
Retrieve the set of values that occur in matches for source.
|
java.util.Set<org.eclipse.uml2.uml.Action> |
getAllValuesOfsource(org.eclipse.uml2.uml.Classifier pTarget)
Retrieve the set of values that occur in matches for source.
|
java.util.Set<org.eclipse.uml2.uml.Classifier> |
getAllValuesOftarget()
Retrieve the set of values that occur in matches for target.
|
java.util.Set<org.eclipse.uml2.uml.Classifier> |
getAllValuesOftarget(org.eclipse.uml2.uml.Action pSource)
Retrieve the set of values that occur in matches for target.
|
java.util.Set<org.eclipse.uml2.uml.Classifier> |
getAllValuesOftarget(ActionContextMatch partialMatch)
Retrieve the set of values that occur in matches for target.
|
ActionContextMatch |
getOneArbitraryMatch(org.eclipse.uml2.uml.Action pSource,
org.eclipse.uml2.uml.Classifier pTarget)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(org.eclipse.uml2.uml.Action pSource,
org.eclipse.uml2.uml.Classifier pTarget)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
ActionContextMatch |
newMatch(org.eclipse.uml2.uml.Action pSource,
org.eclipse.uml2.uml.Classifier pTarget)
Returns a new (partial) match.
|
static ActionContextMatcher |
on(IncQueryEngine engine)
Initializes the pattern matcher within an existing EMF-IncQuery engine.
|
static IQuerySpecification<ActionContextMatcher> |
querySpecification() |
countMatches, countMatches, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, newEmptyMatch, newMatch
@Deprecated public ActionContextMatcher(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 ActionContextMatcher(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 ActionContextMatcher 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<ActionContextMatch> getAllMatches(org.eclipse.uml2.uml.Action pSource, org.eclipse.uml2.uml.Classifier pTarget)
pSource
- the fixed value of pattern parameter source, or null if not bound.pTarget
- the fixed value of pattern parameter target, or null if not bound.public ActionContextMatch getOneArbitraryMatch(org.eclipse.uml2.uml.Action pSource, org.eclipse.uml2.uml.Classifier pTarget)
pSource
- the fixed value of pattern parameter source, or null if not bound.pTarget
- the fixed value of pattern parameter target, or null if not bound.public boolean hasMatch(org.eclipse.uml2.uml.Action pSource, org.eclipse.uml2.uml.Classifier pTarget)
pSource
- the fixed value of pattern parameter source, or null if not bound.pTarget
- the fixed value of pattern parameter target, or null if not bound.public int countMatches(org.eclipse.uml2.uml.Action pSource, org.eclipse.uml2.uml.Classifier pTarget)
pSource
- the fixed value of pattern parameter source, or null if not bound.pTarget
- the fixed value of pattern parameter target, or null if not bound.public void forEachMatch(org.eclipse.uml2.uml.Action pSource, org.eclipse.uml2.uml.Classifier pTarget, IMatchProcessor<? super ActionContextMatch> processor)
pSource
- the fixed value of pattern parameter source, or null if not bound.pTarget
- the fixed value of pattern parameter target, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(org.eclipse.uml2.uml.Action pSource, org.eclipse.uml2.uml.Classifier pTarget, IMatchProcessor<? super ActionContextMatch> processor)
pSource
- the fixed value of pattern parameter source, or null if not bound.pTarget
- the fixed value of pattern parameter target, or null if not bound.processor
- the action that will process the selected match.public ActionContextMatch newMatch(org.eclipse.uml2.uml.Action pSource, org.eclipse.uml2.uml.Classifier pTarget)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch()
to obtain a mutable match object.
pSource
- the fixed value of pattern parameter source, or null if not bound.pTarget
- the fixed value of pattern parameter target, or null if not bound.public java.util.Set<org.eclipse.uml2.uml.Action> getAllValuesOfsource()
public java.util.Set<org.eclipse.uml2.uml.Action> getAllValuesOfsource(ActionContextMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.Action> getAllValuesOfsource(org.eclipse.uml2.uml.Classifier pTarget)
public java.util.Set<org.eclipse.uml2.uml.Classifier> getAllValuesOftarget()
public java.util.Set<org.eclipse.uml2.uml.Classifier> getAllValuesOftarget(ActionContextMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.Classifier> getAllValuesOftarget(org.eclipse.uml2.uml.Action pSource)
public static IQuerySpecification<ActionContextMatcher> querySpecification() throws IncQueryException
IncQueryException
- if the pattern definition could not be loaded