blob: 117a8727f56c5e173c80ca5fa8ce93bf1960431b [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.xtext.chart;
import org.eclipse.osbp.xtext.builder.xbase.setups.XbaseBundleSpaceStandaloneSetup;
import com.google.inject.Guice;
import com.google.inject.Injector;
// TODO: Auto-generated Javadoc
/**
* The Class ChartDSLBundleSpaceStandaloneSetup.
*/
@SuppressWarnings("restriction")
public class ChartDSLBundleSpaceStandaloneSetup extends ChartDSLStandaloneSetup {
/**
* Do setup.
*/
public static void doSetup() {
new ChartDSLBundleSpaceStandaloneSetup().createInjectorAndDoEMFRegistration();
}
/* (non-Javadoc)
* @see org.eclipse.osbp.xtext.chart.ChartDSLStandaloneSetupGenerated#createInjectorAndDoEMFRegistration()
*/
@Override
public Injector createInjectorAndDoEMFRegistration() {
XbaseBundleSpaceStandaloneSetup.doSetup();
Injector injector = createInjector();
register(injector);
return injector;
}
/* (non-Javadoc)
* @see org.eclipse.osbp.xtext.chart.ChartDSLStandaloneSetupGenerated#createInjector()
*/
@Override
public Injector createInjector() {
return Guice.createInjector(new ChartDSLBundleSpaceRuntimeModule());
}
}