Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 885b6ff0bc84a4c1053618b6d88116253f0a54e1 (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
/*******************************************************************************
 * Copyright (c) 2011 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * CONTRIBUTORS:
 * 		Henrik Rentz-Reichert (initial contribution)
 * 
 *******************************************************************************/

package org.eclipse.etrice.generator.java;

import org.eclipse.xtext.ISetup;

import com.google.inject.Guice;
import com.google.inject.Injector;

public class StandaloneSetup implements ISetup {

//	@Override
	public Injector createInjectorAndDoEMFRegistration() {
		return Guice.createInjector(new GeneratorModule());
	}

}

Back to the top