public class FilteringScope extends java.lang.Object implements IScope
IEObjectDescription for which
the given predicate returns false.| Constructor and Description |
|---|
FilteringScope(IScope delegate,
com.google.common.base.Predicate<IEObjectDescription> filter) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Iterable<IEObjectDescription> |
getAllElements()
Obtain all elements from the scope.
|
java.lang.Iterable<IEObjectDescription> |
getElements(org.eclipse.emf.ecore.EObject object)
Find all descriptions that match the given instance.
|
java.lang.Iterable<IEObjectDescription> |
getElements(QualifiedName name)
Find all descriptions that match the given name.
|
protected IEObjectDescription |
getFirst(java.lang.Iterable<IEObjectDescription> elements) |
IEObjectDescription |
getSingleElement(org.eclipse.emf.ecore.EObject object)
Find the first description that matches the given instance.
|
IEObjectDescription |
getSingleElement(QualifiedName name)
Find the first description that matches the given name.
|
public FilteringScope(IScope delegate, com.google.common.base.Predicate<IEObjectDescription> filter)
public java.lang.Iterable<IEObjectDescription> getAllElements()
IScopeUnsupportedOperationException
if the scope cannot be enumerated.getAllElements in interface IScopenull.public java.lang.Iterable<IEObjectDescription> getElements(org.eclipse.emf.ecore.EObject object)
IScopegetElements in interface IScopeobject - the instance whose descriptions should be obtained. May not be null.instance. Never null.public java.lang.Iterable<IEObjectDescription> getElements(QualifiedName name)
IScopegetElements in interface IScopename - the name of the to-be-found elements. May not be null.name. Never null.public IEObjectDescription getSingleElement(org.eclipse.emf.ecore.EObject object)
IScopegetSingleElement in interface IScopeobject - the instance whose description should be obtained. May not be null.instance. May be null.public IEObjectDescription getSingleElement(QualifiedName name)
IScopegetSingleElement in interface IScopename - the name of the to-be-found element. May not be null.name. May be null.protected IEObjectDescription getFirst(java.lang.Iterable<IEObjectDescription> elements)