30 lines
796 B
Java
30 lines
796 B
Java
|
/*
|
||
|
* generated by Xtext 2.23.0
|
||
|
*/
|
||
|
package fr.n7.ui;
|
||
|
|
||
|
import com.google.inject.Injector;
|
||
|
import fr.n7.pdl1.ui.internal.Pdl1Activator;
|
||
|
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 PDL1ExecutableExtensionFactory extends AbstractGuiceAwareExecutableExtensionFactory {
|
||
|
|
||
|
@Override
|
||
|
protected Bundle getBundle() {
|
||
|
return Platform.getBundle(Pdl1Activator.PLUGIN_ID);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected Injector getInjector() {
|
||
|
Pdl1Activator activator = Pdl1Activator.getInstance();
|
||
|
return activator != null ? activator.getInjector(Pdl1Activator.FR_N7_PDL1) : null;
|
||
|
}
|
||
|
|
||
|
}
|