You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
6 years ago
|
/*
|
||
|
* generated by Xtext 2.12.0
|
||
|
*/
|
||
|
package com.irtsaintexupery.xtext.pseim;
|
||
|
|
||
|
import com.google.inject.Guice;
|
||
|
import com.google.inject.Injector;
|
||
|
import org.eclipse.emf.ecore.resource.Resource;
|
||
|
import org.eclipse.xtext.ISetup;
|
||
|
import org.eclipse.xtext.common.TerminalsStandaloneSetup;
|
||
|
import org.eclipse.xtext.resource.IResourceFactory;
|
||
|
import org.eclipse.xtext.resource.IResourceServiceProvider;
|
||
|
|
||
|
@SuppressWarnings("all")
|
||
|
public class MappingStandaloneSetupGenerated implements ISetup {
|
||
|
|
||
|
@Override
|
||
|
public Injector createInjectorAndDoEMFRegistration() {
|
||
|
TerminalsStandaloneSetup.doSetup();
|
||
|
|
||
|
Injector injector = createInjector();
|
||
|
register(injector);
|
||
|
return injector;
|
||
|
}
|
||
|
|
||
|
public Injector createInjector() {
|
||
|
return Guice.createInjector(new MappingRuntimeModule());
|
||
|
}
|
||
|
|
||
|
public void register(Injector injector) {
|
||
|
IResourceFactory resourceFactory = injector.getInstance(IResourceFactory.class);
|
||
|
IResourceServiceProvider serviceProvider = injector.getInstance(IResourceServiceProvider.class);
|
||
|
|
||
|
Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap().put("mapping", resourceFactory);
|
||
|
IResourceServiceProvider.Registry.INSTANCE.getExtensionToFactoryMap().put("mapping", serviceProvider);
|
||
|
}
|
||
|
}
|