org.eclipse.xtext.xbase.scoping.batch.IBatchScopeProvider Java Examples
The following examples show how to use
org.eclipse.xtext.xbase.scoping.batch.IBatchScopeProvider.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractXImportSectionTestLangRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return XImportSectionTestLangScopeProvider.class; }
Example #2
Source File: AbstractSARLRuntimeModule.java From sarl with Apache License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return SARLScopeProvider.class; }
Example #3
Source File: AbstractXtendRuntimeModule.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return XtendScopeProvider.class; }
Example #4
Source File: PublicReentrantTypeResolver.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
@Override public IBatchScopeProvider getBatchScopeProvider() { return super.getBatchScopeProvider(); }
Example #5
Source File: PublicReentrantTypeResolver.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public IBatchScopeProvider getBatchScopeProvider() { return super.getBatchScopeProvider(); }
Example #6
Source File: AbstractRuleEngineRuntimeModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return RuleEngineScopeProvider.class; }
Example #7
Source File: AbstractDomainmodelRuntimeModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return DomainmodelScopeProvider.class; }
Example #8
Source File: AbstractEntitiesRuntimeModule.java From xtext-web with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return EntitiesScopeProvider.class; }
Example #9
Source File: AbstractContentAssistFragmentTestLangRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return ContentAssistFragmentTestLangScopeProvider.class; }
Example #10
Source File: AbstractPureXbaseRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return PureXbaseScopeProvider.class; }
Example #11
Source File: AbstractBug462047LangRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return Bug462047LangScopeProvider.class; }
Example #12
Source File: PublicReentrantTypeResolver.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
@Override public IBatchScopeProvider getBatchScopeProvider() { return super.getBatchScopeProvider(); }
Example #13
Source File: DefaultXbaseRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
@Override public void configureLinkingIScopeProvider(com.google.inject.Binder binder) { binder.bind(org.eclipse.xtext.scoping.IScopeProvider.class).annotatedWith(org.eclipse.xtext.linking.LinkingScopeProviderBinding.class) .to(org.eclipse.xtext.xbase.scoping.batch.IBatchScopeProvider.class); }
Example #14
Source File: DefaultXbaseRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
@Override public Class<? extends IScopeProvider> bindIScopeProvider() { return IBatchScopeProvider.class; }
Example #15
Source File: DefaultReentrantTypeResolver.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
protected IBatchScopeProvider getBatchScopeProvider() { return batchScopeProvider; }
Example #16
Source File: AbstractXbaseWithAnnotationsRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return XbaseWithAnnotationsBatchScopeProvider.class; }
Example #17
Source File: AbstractXbaseRuntimeModule.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IBatchScopeProvider> bindIBatchScopeProvider() { return XbaseBatchScopeProvider.class; }
Example #18
Source File: PublicReentrantTypeResolver.java From xtext-extras with Eclipse Public License 2.0 | 4 votes |
@Override public IBatchScopeProvider getBatchScopeProvider() { return super.getBatchScopeProvider(); }