projet-mini-genie-logiciel-.../eclipse-workspace/fr.n7.pdl2.ui/src-gen/fr/n7/ui/PDL2ExecutableExtensionFactory.java

30 lines
796 B
Java
Raw Normal View History

2021-10-12 16:49:13 +00:00
/*
* generated by Xtext 2.23.0
*/
package fr.n7.ui;
import com.google.inject.Injector;
import fr.n7.pdl2.ui.internal.Pdl2Activator;
import org.eclipse.core.runtime.Platform;
import org.eclipse.xtext.ui.guice.AbstractGuiceAwareExecutableExtensionFactory;
import org.osgi.framework.Bundle;
/**
* This class was generated. Customizations should only happen in a newly
* introduced subclass.
*/
public class PDL2ExecutableExtensionFactory extends AbstractGuiceAwareExecutableExtensionFactory {
@Override
protected Bundle getBundle() {
return Platform.getBundle(Pdl2Activator.PLUGIN_ID);
}
@Override
protected Injector getInjector() {
Pdl2Activator activator = Pdl2Activator.getInstance();
return activator != null ? activator.getInjector(Pdl2Activator.FR_N7_PDL2) : null;
}
}