/* * generated by Xtext */ package org.panlab.software.fsdl.ui.internal; import org.apache.log4j.Logger; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Module; import com.google.inject.util.Modules; import java.util.Map; import java.util.HashMap; /** * Generated */ public class FSDLActivator extends AbstractUIPlugin { private Map<String,Injector> injectors = new HashMap<String,Injector>(); private static FSDLActivator INSTANCE; public Injector getInjector(String languageName) { return injectors.get(languageName); } @Override public void start(BundleContext context) throws Exception { super.start(context); INSTANCE = this; try { injectors.put("org.panlab.software.fsdl.FSDL", Guice.createInjector( Modules.override(Modules.override(getRuntimeModule("org.panlab.software.fsdl.FSDL")).with(getUiModule("org.panlab.software.fsdl.FSDL"))).with(getSharedStateModule()) )); } catch (Exception e) { Logger.getLogger(getClass()).error(e.getMessage(), e); throw e; } } public static FSDLActivator getInstance() { return INSTANCE; } protected Module getRuntimeModule(String grammar) { if ("org.panlab.software.fsdl.FSDL".equals(grammar)) { return new org.panlab.software.fsdl.FSDLRuntimeModule(); } throw new IllegalArgumentException(grammar); } protected Module getUiModule(String grammar) { if ("org.panlab.software.fsdl.FSDL".equals(grammar)) { return new org.panlab.software.fsdl.ui.FSDLUiModule(this); } throw new IllegalArgumentException(grammar); } protected Module getSharedStateModule() { return new org.eclipse.xtext.ui.shared.SharedStateModule(); } }