Package com._1c.g5.v8.dt.bsl.bm.scoping
Class BmAwareBslGlobalScopeProvider
- java.lang.Object
-
- org.eclipse.xtext.scoping.impl.AbstractGlobalScopeProvider
-
- com._1c.g5.modeling.xtext.scoping.LightDefaultGlobalScopeProvider
-
- com._1c.g5.v8.dt.platform.scoping.PlatformAwareGlobalScopeProvider
-
- com._1c.g5.v8.dt.bsl.scoping.BslGlobalScopeProvider
-
- com._1c.g5.v8.dt.bsl.bm.scoping.BmAwareBslGlobalScopeProvider
-
- All Implemented Interfaces:
IProjectGlobalScopeProvider
,IDtProjectGlobalScopeProvider
,org.eclipse.xtext.scoping.IGlobalScopeProvider
public class BmAwareBslGlobalScopeProvider extends BslGlobalScopeProvider implements IProjectGlobalScopeProvider, IDtProjectGlobalScopeProvider
BSL Global scope provider aware of BM index
-
-
Constructor Summary
Constructors Constructor Description BmAwareBslGlobalScopeProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected org.eclipse.xtext.scoping.IScope
createContainerScope(org.eclipse.xtext.scoping.IScope parent, org.eclipse.xtext.resource.IContainer container, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter, org.eclipse.emf.ecore.EClass type, boolean ignoreCase)
protected org.eclipse.xtext.scoping.IScope
getDefaultGlobalScope(org.eclipse.xtext.scoping.IScope parent, org.eclipse.emf.ecore.resource.Resource resource, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Returns a default global scope for the given parent scope and the given context.org.eclipse.xtext.scoping.IScope
getScope(IDtProject project, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Returns a global scope for the givenIProject
context.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)
Returns a global scope for the givenIProject
context.org.eclipse.xtext.scoping.IScope
getScope(org.eclipse.emf.ecore.EObject context, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Gets scope by context object-
Methods inherited from class com._1c.g5.v8.dt.bsl.scoping.BslGlobalScopeProvider
getScope
-
Methods inherited from class com._1c.g5.v8.dt.platform.scoping.PlatformAwareGlobalScopeProvider
getDefaultGlobalScope, getDefaultGlobalScope, getPlatformScope, setPlatformScopeProvider
-
Methods inherited from class com._1c.g5.modeling.xtext.scoping.LightDefaultGlobalScopeProvider
createContainerScopeWithContext, getCacheKey, getScope, getScope, getVisibleContainers
-
Methods inherited from class org.eclipse.xtext.scoping.impl.AbstractGlobalScopeProvider
getResourceDescriptions, getScope, isIgnoreCase, setCaseInsensitivityHelper, setResourceDescriptionsProvider
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.e1c.g5.dt.core.api.scoping.IDtProjectGlobalScopeProvider
getResourceDescriptions
-
-
-
-
Method Detail
-
getScope
public org.eclipse.xtext.scoping.IScope getScope(IDtProject project, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Description copied from interface:IDtProjectGlobalScopeProvider
Returns a global scope for the givenIProject
context.- Specified by:
getScope
in interfaceIDtProjectGlobalScopeProvider
- Parameters:
project
- theIDtProject
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.
-
getScope
public 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)
Description copied from interface:IProjectGlobalScopeProvider
Returns a global scope for the givenIProject
context.- Specified by:
getScope
in interfaceIProjectGlobalScopeProvider
- 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.
-
getScope
public org.eclipse.xtext.scoping.IScope getScope(org.eclipse.emf.ecore.EObject context, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Description copied from interface:IDtProjectGlobalScopeProvider
Gets scope by context object- Specified by:
getScope
in interfaceIDtProjectGlobalScopeProvider
- Parameters:
context
- contextEObject
for computing relatingIScope
, cannot benull
reference
-EReference
for computingEClass
of the objects included to theIScope
, cannot benull
filter
- filter item in resultingIScope
, can benull
if there is no filters- Returns:
IScope
with indexing items for EDT, nevernull
-
getDefaultGlobalScope
protected org.eclipse.xtext.scoping.IScope getDefaultGlobalScope(org.eclipse.xtext.scoping.IScope parent, org.eclipse.emf.ecore.resource.Resource resource, org.eclipse.emf.ecore.EReference reference, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter)
Description copied from class:PlatformAwareGlobalScopeProvider
Returns a default global scope for the given parent scope and the given context.- Overrides:
getDefaultGlobalScope
in classPlatformAwareGlobalScopeProvider
- Parameters:
parent
- the parent scoperesource
- the resource from which the global scope is looked at.reference
- the reference for which to construct a global scope.filter
- a filter used to filter down the elements contained in each scope. Scopes will only contain elements for which the filter returnedtrue
.- Returns:
- the resulting default global scope. Can't be
null
.
-
createContainerScope
protected org.eclipse.xtext.scoping.IScope createContainerScope(org.eclipse.xtext.scoping.IScope parent, org.eclipse.xtext.resource.IContainer container, com.google.common.base.Predicate<org.eclipse.xtext.resource.IEObjectDescription> filter, org.eclipse.emf.ecore.EClass type, boolean ignoreCase)
- Overrides:
createContainerScope
in classPlatformAwareGlobalScopeProvider
-
-