public class Param2itemMatcher extends BaseMatcher<Param2itemMatch>
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 Param2itemMatch
.
Original source:
@QueryExplorer(checked = false)
pattern param2item(param, trace : Trace, item : Item) {
Trace.params(trace, param);
Trace.targets(trace, item);
} or {
Trace.objects(trace, param);
Trace.targets(trace, item);
}
Param2itemMatch
,
Param2itemProcessor
,
Param2itemQuerySpecification
Constructor and Description |
---|
Param2itemMatcher(IncQueryEngine engine)
Deprecated.
use
on(IncQueryEngine) instead |
Param2itemMatcher(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(java.lang.Object pParam,
Trace pTrace,
Item pItem)
Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
|
void |
forEachMatch(java.lang.Object pParam,
Trace pTrace,
Item pItem,
IMatchProcessor<? super Param2itemMatch> processor)
Executes the given processor on each match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
forOneArbitraryMatch(java.lang.Object pParam,
Trace pTrace,
Item pItem,
IMatchProcessor<? super Param2itemMatch> 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<Param2itemMatch> |
getAllMatches(java.lang.Object pParam,
Trace pTrace,
Item pItem)
Returns the set of all matches of the pattern that conform to the given fixed values of some parameters.
|
java.util.Set<Item> |
getAllValuesOfitem()
Retrieve the set of values that occur in matches for item.
|
java.util.Set<Item> |
getAllValuesOfitem(java.lang.Object pParam,
Trace pTrace)
Retrieve the set of values that occur in matches for item.
|
java.util.Set<Item> |
getAllValuesOfitem(Param2itemMatch partialMatch)
Retrieve the set of values that occur in matches for item.
|
java.util.Set<java.lang.Object> |
getAllValuesOfparam()
Retrieve the set of values that occur in matches for param.
|
java.util.Set<java.lang.Object> |
getAllValuesOfparam(Param2itemMatch partialMatch)
Retrieve the set of values that occur in matches for param.
|
java.util.Set<java.lang.Object> |
getAllValuesOfparam(Trace pTrace,
Item pItem)
Retrieve the set of values that occur in matches for param.
|
java.util.Set<Trace> |
getAllValuesOftrace()
Retrieve the set of values that occur in matches for trace.
|
java.util.Set<Trace> |
getAllValuesOftrace(java.lang.Object pParam,
Item pItem)
Retrieve the set of values that occur in matches for trace.
|
java.util.Set<Trace> |
getAllValuesOftrace(Param2itemMatch partialMatch)
Retrieve the set of values that occur in matches for trace.
|
Param2itemMatch |
getOneArbitraryMatch(java.lang.Object pParam,
Trace pTrace,
Item pItem)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(java.lang.Object pParam,
Trace pTrace,
Item pItem)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
Param2itemMatch |
newMatch(java.lang.Object pParam,
Trace pTrace,
Item pItem)
Returns a new (partial) match.
|
static Param2itemMatcher |
on(IncQueryEngine engine)
Initializes the pattern matcher within an existing EMF-IncQuery engine.
|
static IQuerySpecification<Param2itemMatcher> |
querySpecification() |
countMatches, countMatches, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, newEmptyMatch, newMatch
@Deprecated public Param2itemMatcher(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 Param2itemMatcher(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 Param2itemMatcher 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<Param2itemMatch> getAllMatches(java.lang.Object pParam, Trace pTrace, Item pItem)
pParam
- the fixed value of pattern parameter param, or null if not bound.pTrace
- the fixed value of pattern parameter trace, or null if not bound.pItem
- the fixed value of pattern parameter item, or null if not bound.public Param2itemMatch getOneArbitraryMatch(java.lang.Object pParam, Trace pTrace, Item pItem)
pParam
- the fixed value of pattern parameter param, or null if not bound.pTrace
- the fixed value of pattern parameter trace, or null if not bound.pItem
- the fixed value of pattern parameter item, or null if not bound.public boolean hasMatch(java.lang.Object pParam, Trace pTrace, Item pItem)
pParam
- the fixed value of pattern parameter param, or null if not bound.pTrace
- the fixed value of pattern parameter trace, or null if not bound.pItem
- the fixed value of pattern parameter item, or null if not bound.public int countMatches(java.lang.Object pParam, Trace pTrace, Item pItem)
pParam
- the fixed value of pattern parameter param, or null if not bound.pTrace
- the fixed value of pattern parameter trace, or null if not bound.pItem
- the fixed value of pattern parameter item, or null if not bound.public void forEachMatch(java.lang.Object pParam, Trace pTrace, Item pItem, IMatchProcessor<? super Param2itemMatch> processor)
pParam
- the fixed value of pattern parameter param, or null if not bound.pTrace
- the fixed value of pattern parameter trace, or null if not bound.pItem
- the fixed value of pattern parameter item, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(java.lang.Object pParam, Trace pTrace, Item pItem, IMatchProcessor<? super Param2itemMatch> processor)
pParam
- the fixed value of pattern parameter param, or null if not bound.pTrace
- the fixed value of pattern parameter trace, or null if not bound.pItem
- the fixed value of pattern parameter item, or null if not bound.processor
- the action that will process the selected match.public Param2itemMatch newMatch(java.lang.Object pParam, Trace pTrace, Item pItem)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch()
to obtain a mutable match object.
pParam
- the fixed value of pattern parameter param, or null if not bound.pTrace
- the fixed value of pattern parameter trace, or null if not bound.pItem
- the fixed value of pattern parameter item, or null if not bound.public java.util.Set<java.lang.Object> getAllValuesOfparam()
public java.util.Set<java.lang.Object> getAllValuesOfparam(Param2itemMatch partialMatch)
public java.util.Set<java.lang.Object> getAllValuesOfparam(Trace pTrace, Item pItem)
public java.util.Set<Trace> getAllValuesOftrace()
public java.util.Set<Trace> getAllValuesOftrace(Param2itemMatch partialMatch)
public java.util.Set<Trace> getAllValuesOftrace(java.lang.Object pParam, Item pItem)
public java.util.Set<Item> getAllValuesOfitem()
public java.util.Set<Item> getAllValuesOfitem(Param2itemMatch partialMatch)
public java.util.Set<Item> getAllValuesOfitem(java.lang.Object pParam, Trace pTrace)
public static IQuerySpecification<Param2itemMatcher> querySpecification() throws IncQueryException
IncQueryException
- if the pattern definition could not be loaded