org.eclipse.xtext.ui.editor.model.IResourceForEditorInputFactory Java Examples
The following examples show how to use
org.eclipse.xtext.ui.editor.model.IResourceForEditorInputFactory.
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: N4JSUiModule.java From n4js with Eclipse Public License 1.0 | 4 votes |
/** Bind {@link URIBasedStorageEditorInputFactory} to support hyperlinks to external library modules */ @Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return URIBasedStorageEditorInputFactory.class; }
Example #2
Source File: NoJdtTestLanguageUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return ResourceForIEditorInputFactory.class; }
Example #3
Source File: JavaClassPathResourceForIEditorInputFactoryTest.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public void setUp() throws Exception { super.setUp(); factory = getInjector().getInstance(IResourceForEditorInputFactory.class); }
Example #4
Source File: CodetemplatesUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return ResourceForIEditorInputFactory.class; }
Example #5
Source File: SingleCodetemplateUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return ResourceForIEditorInputFactory.class; }
Example #6
Source File: ArithmeticsUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
@Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return ResourceForIEditorInputFactory.class; }
Example #7
Source File: DefaultUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return JavaClassPathResourceForIEditorInputFactory.class; }
Example #8
Source File: DefaultXbaseUiModule.java From xtext-eclipse with Eclipse Public License 2.0 | 4 votes |
/** * @since 2.13 */ @Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return XbaseResourceForEditorInputFactory.class; }
Example #9
Source File: GamlUiModule.java From gama with GNU General Public License v3.0 | 4 votes |
@Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return ResourceForIEditorInputFactory.class; }
Example #10
Source File: TaxonomyUiModule.java From slr-toolkit with Eclipse Public License 1.0 | 4 votes |
@Override public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return ResourceForIEditorInputFactory.class; }
Example #11
Source File: AbstractSARLUiModule.java From sarl with Apache License 2.0 | 4 votes |
public Class<? extends IResourceForEditorInputFactory> bindIResourceForEditorInputFactory() { return XbaseResourceForEditorInputFactory.class; }