Package org.eclipse.xtext.scoping.impl
Class DelegatingScopeProvider
- java.lang.Object
-
- org.eclipse.xtext.scoping.impl.AbstractScopeProvider
-
- org.eclipse.xtext.scoping.impl.DelegatingScopeProvider
-
- All Implemented Interfaces:
IDelegatingScopeProvider,IScopeProvider
public class DelegatingScopeProvider extends AbstractScopeProvider implements IDelegatingScopeProvider
This implementation skips the declarative API of theAbstractDeclarativeScopeProviderwhile still delegating to anotherprovider. Meant to be used as the base class for custom scope providers.- Since:
- 2.4
-
-
Constructor Summary
Constructors Constructor Description DelegatingScopeProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected IScopedelegateGetScope(org.eclipse.emf.ecore.EObject context, org.eclipse.emf.ecore.EReference reference)IScopeProvidergetDelegate()Provides access to the delegate.IScopegetScope(org.eclipse.emf.ecore.EObject context, org.eclipse.emf.ecore.EReference reference)Returns a scope for the given context.voidsetDelegate(IScopeProvider delegate)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.xtext.scoping.impl.IDelegatingScopeProvider
setWrapper
-
-
-
-
Method Detail
-
getScope
public IScope getScope(org.eclipse.emf.ecore.EObject context, org.eclipse.emf.ecore.EReference reference)
Description copied from interface:IScopeProviderReturns a scope for the given context. The scope provides access to the compatible visible EObjects for a given reference.- Specified by:
getScopein interfaceIScopeProvider- Parameters:
context- the element from which an element shall be referenced. It doesn't need to be the element containing the reference, it is just used to find the most inner scope for givenEReference.reference- the reference for which to get the scope.- Returns:
IScoperepresenting the innermostIScopefor the passed context and reference. Note for implementors: The result may not benull. ReturnIScope.NULLSCOPEinstead.
-
delegateGetScope
protected IScope delegateGetScope(org.eclipse.emf.ecore.EObject context, org.eclipse.emf.ecore.EReference reference)
-
setDelegate
public void setDelegate(IScopeProvider delegate)
-
getDelegate
public IScopeProvider getDelegate()
Description copied from interface:IDelegatingScopeProviderProvides access to the delegate.- Specified by:
getDelegatein interfaceIDelegatingScopeProvider- Returns:
- the delegate. May not be
null.
-
-