public abstract class BasePatternGroup extends java.lang.Object implements IQueryGroup
IQueryGroup
.Constructor and Description |
---|
BasePatternGroup() |
Modifier and Type | Method and Description |
---|---|
void |
prepare(IncQueryEngine engine)
Initializes matchers for the group of patterns within an
IncQueryEngine . |
void |
prepare(org.eclipse.emf.common.notify.Notifier emfRoot)
Initializes the contained patterns over a given EMF model root (recommended: Resource or ResourceSet).
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getSpecifications
public void prepare(org.eclipse.emf.common.notify.Notifier emfRoot) throws IncQueryException
IQueryGroup
The scope of pattern matching will be the given EMF model root and below (see FAQ for more precise definition). The match set will be incrementally refreshed upon updates from this scope.
prepare
in interface IQueryGroup
emfRoot
- the root of the EMF tree where the pattern matchers will operate. Recommended: Resource or
ResourceSet.IncQueryException
- if an error occurs during pattern matcher creationpublic void prepare(IncQueryEngine engine) throws IncQueryException
IQueryGroup
IncQueryEngine
. If some of the pattern matchers are already
constructed in the engine, no task is performed for them.
This preparation step has the advantage that it prepares pattern matchers for an arbitrary number of patterns in a single-pass traversal of the model. This is typically more efficient than traversing the model each time an individual pattern matcher is initialized on demand. The performance benefit only manifests itself if the engine is not in wildcard mode.
prepare
in interface IQueryGroup
engine
- the existing IncQuery engine in which the matchers will be created.IncQueryException
- if there was an error in preparing the engine