Interface IProjectGlobalScopeProvider
-
- All Known Subinterfaces:
IV8GlobalScopeProvider
- All Known Implementing Classes:
BmAwareBslGlobalScopeProvider
,MdGlobalScopeProvider
@Deprecated public interface IProjectGlobalScopeProvider
Deprecated.Use IDtProjectGlobalScopeProvider instead to support all types of DT projects, including virtual onesScope provider byIDtProject
context.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description org.eclipse.xtext.scoping.IScope
getScope(org.eclipse.core.resources.IProject project, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Deprecated.Returns a global scope for the givenIProject
context.
-
-
-
Method Detail
-
getScope
org.eclipse.xtext.scoping.IScope getScope(org.eclipse.core.resources.IProject project, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Deprecated.Returns a global scope for the givenIProject
context.- Parameters:
project
- theIProject
from which the global scope is looked at, cannot benull
reference
- the reference for which to construct a global scope, cannot benull
filter
- filter a filter used to filter down the elements contained in each scope. Scopes will only contain elements for which the filter returnedtrue
, can benull
- Returns:
IScope
representing the inner mostIScope
for the passed project and reference. The result cannot benull
, returnIScope.NULLSCOPE
instead.
-
-