Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 41c195390239fcf6454a34fadcd2d86ffe911a29 (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.etrice.core.common.ui;

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

import com.google.inject.Injector;

import org.eclipse.etrice.core.common.ui.internal.BaseActivator;

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

	@Override
	protected Bundle getBundle() {
		return BaseActivator.getInstance().getBundle();
	}
	
	@Override
	protected Injector getInjector() {
		return BaseActivator.getInstance().getInjector(BaseActivator.ORG_ECLIPSE_ETRICE_CORE_COMMON_BASETEST);
	}
	
}

Back to the top