Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 468b6d8049914116a1c5c9767a5188e506a97e7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * generated by Xtext
 */
package org.eclipse.emf.parsley.dsl.ui;

import org.eclipse.xtext.ui.guice.AbstractGuiceAwareExecutableExtensionFactory;
import org.osgi.framework.Bundle;

import com.google.inject.Injector;

import org.eclipse.emf.parsley.dsl.ui.internal.EmfParsleyDslActivator;

/**
 * This class was generated. Customizations should only happen in a newly
 * introduced subclass. 
 */
public class EmfParsleyDslExecutableExtensionFactory extends AbstractGuiceAwareExecutableExtensionFactory {

	@Override
	protected Bundle getBundle() {
		return EmfParsleyDslActivator.getInstance().getBundle();
	}
	
	@Override
	protected Injector getInjector() {
		return EmfParsleyDslActivator.getInstance().getInjector(EmfParsleyDslActivator.ORG_ECLIPSE_EMF_PARSLEY_DSL_EMFPARSLEYDSL);
	}
	
}

Back to the top