public class NamespaceImportedMemberMatcher extends BaseMatcher<NamespaceImportedMemberMatch>
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 NamespaceImportedMemberMatch
.
Original source:
(self.importMembers(elementImport.importedElement- >asSet()- >union(packageImport.importedPackage- >collect(p | p.visibleMembers()))- >asSet()))
@Surrogate(feature = "importedMember")
@QueryExplorer(checked = false)
pattern namespaceImportedMember(namespace: Namespace, importedMember: PackageableElement) {
Namespace.elementImport(namespace, elementImport);
ElementImport.importedElement(elementImport, importedMember);
} or {
Namespace.packageImport(namespace, packageImport);
PackageImport.importedPackage(packageImport, importedPackage);
find packageVisibleMember(importedPackage, importedMember);
}
NamespaceImportedMemberMatch
,
NamespaceImportedMemberProcessor
,
NamespaceImportedMemberQuerySpecification
Constructor and Description |
---|
NamespaceImportedMemberMatcher(IncQueryEngine engine)
Deprecated.
use
on(IncQueryEngine) instead |
NamespaceImportedMemberMatcher(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.Namespace pNamespace,
org.eclipse.uml2.uml.PackageableElement pImportedMember)
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.Namespace pNamespace,
org.eclipse.uml2.uml.PackageableElement pImportedMember,
IMatchProcessor<? super NamespaceImportedMemberMatch> 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.Namespace pNamespace,
org.eclipse.uml2.uml.PackageableElement pImportedMember,
IMatchProcessor<? super NamespaceImportedMemberMatch> 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<NamespaceImportedMemberMatch> |
getAllMatches(org.eclipse.uml2.uml.Namespace pNamespace,
org.eclipse.uml2.uml.PackageableElement pImportedMember)
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.PackageableElement> |
getAllValuesOfimportedMember()
Retrieve the set of values that occur in matches for importedMember.
|
java.util.Set<org.eclipse.uml2.uml.PackageableElement> |
getAllValuesOfimportedMember(org.eclipse.uml2.uml.Namespace pNamespace)
Retrieve the set of values that occur in matches for importedMember.
|
java.util.Set<org.eclipse.uml2.uml.PackageableElement> |
getAllValuesOfimportedMember(NamespaceImportedMemberMatch partialMatch)
Retrieve the set of values that occur in matches for importedMember.
|
java.util.Set<org.eclipse.uml2.uml.Namespace> |
getAllValuesOfnamespace()
Retrieve the set of values that occur in matches for namespace.
|
java.util.Set<org.eclipse.uml2.uml.Namespace> |
getAllValuesOfnamespace(NamespaceImportedMemberMatch partialMatch)
Retrieve the set of values that occur in matches for namespace.
|
java.util.Set<org.eclipse.uml2.uml.Namespace> |
getAllValuesOfnamespace(org.eclipse.uml2.uml.PackageableElement pImportedMember)
Retrieve the set of values that occur in matches for namespace.
|
NamespaceImportedMemberMatch |
getOneArbitraryMatch(org.eclipse.uml2.uml.Namespace pNamespace,
org.eclipse.uml2.uml.PackageableElement pImportedMember)
Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
|
boolean |
hasMatch(org.eclipse.uml2.uml.Namespace pNamespace,
org.eclipse.uml2.uml.PackageableElement pImportedMember)
Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
under any possible substitution of the unspecified parameters (if any).
|
NamespaceImportedMemberMatch |
newMatch(org.eclipse.uml2.uml.Namespace pNamespace,
org.eclipse.uml2.uml.PackageableElement pImportedMember)
Returns a new (partial) match.
|
static NamespaceImportedMemberMatcher |
on(IncQueryEngine engine)
Initializes the pattern matcher within an existing EMF-IncQuery engine.
|
static IQuerySpecification<NamespaceImportedMemberMatcher> |
querySpecification() |
countMatches, countMatches, forEachMatch, forEachMatch, forOneArbitraryMatch, forOneArbitraryMatch, getAllMatches, getAllMatches, getAllValues, getAllValues, getEngine, getOneArbitraryMatch, getOneArbitraryMatch, getParameterNames, getPatternName, getPositionOfParameter, getSpecification, hasMatch, newEmptyMatch, newMatch
@Deprecated public NamespaceImportedMemberMatcher(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 NamespaceImportedMemberMatcher(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 NamespaceImportedMemberMatcher 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<NamespaceImportedMemberMatch> getAllMatches(org.eclipse.uml2.uml.Namespace pNamespace, org.eclipse.uml2.uml.PackageableElement pImportedMember)
pNamespace
- the fixed value of pattern parameter namespace, or null if not bound.pImportedMember
- the fixed value of pattern parameter importedMember, or null if not bound.public NamespaceImportedMemberMatch getOneArbitraryMatch(org.eclipse.uml2.uml.Namespace pNamespace, org.eclipse.uml2.uml.PackageableElement pImportedMember)
pNamespace
- the fixed value of pattern parameter namespace, or null if not bound.pImportedMember
- the fixed value of pattern parameter importedMember, or null if not bound.public boolean hasMatch(org.eclipse.uml2.uml.Namespace pNamespace, org.eclipse.uml2.uml.PackageableElement pImportedMember)
pNamespace
- the fixed value of pattern parameter namespace, or null if not bound.pImportedMember
- the fixed value of pattern parameter importedMember, or null if not bound.public int countMatches(org.eclipse.uml2.uml.Namespace pNamespace, org.eclipse.uml2.uml.PackageableElement pImportedMember)
pNamespace
- the fixed value of pattern parameter namespace, or null if not bound.pImportedMember
- the fixed value of pattern parameter importedMember, or null if not bound.public void forEachMatch(org.eclipse.uml2.uml.Namespace pNamespace, org.eclipse.uml2.uml.PackageableElement pImportedMember, IMatchProcessor<? super NamespaceImportedMemberMatch> processor)
pNamespace
- the fixed value of pattern parameter namespace, or null if not bound.pImportedMember
- the fixed value of pattern parameter importedMember, or null if not bound.processor
- the action that will process each pattern match.public boolean forOneArbitraryMatch(org.eclipse.uml2.uml.Namespace pNamespace, org.eclipse.uml2.uml.PackageableElement pImportedMember, IMatchProcessor<? super NamespaceImportedMemberMatch> processor)
pNamespace
- the fixed value of pattern parameter namespace, or null if not bound.pImportedMember
- the fixed value of pattern parameter importedMember, or null if not bound.processor
- the action that will process the selected match.public NamespaceImportedMemberMatch newMatch(org.eclipse.uml2.uml.Namespace pNamespace, org.eclipse.uml2.uml.PackageableElement pImportedMember)
The returned match will be immutable. Use BaseMatcher.newEmptyMatch()
to obtain a mutable match object.
pNamespace
- the fixed value of pattern parameter namespace, or null if not bound.pImportedMember
- the fixed value of pattern parameter importedMember, or null if not bound.public java.util.Set<org.eclipse.uml2.uml.Namespace> getAllValuesOfnamespace()
public java.util.Set<org.eclipse.uml2.uml.Namespace> getAllValuesOfnamespace(NamespaceImportedMemberMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.Namespace> getAllValuesOfnamespace(org.eclipse.uml2.uml.PackageableElement pImportedMember)
public java.util.Set<org.eclipse.uml2.uml.PackageableElement> getAllValuesOfimportedMember()
public java.util.Set<org.eclipse.uml2.uml.PackageableElement> getAllValuesOfimportedMember(NamespaceImportedMemberMatch partialMatch)
public java.util.Set<org.eclipse.uml2.uml.PackageableElement> getAllValuesOfimportedMember(org.eclipse.uml2.uml.Namespace pNamespace)
public static IQuerySpecification<NamespaceImportedMemberMatcher> querySpecification() throws IncQueryException
IncQueryException
- if the pattern definition could not be loaded