blob: adbe43cda0c835c2ad2720272cd1e5a8e062eed0 [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.datamartdsl.ui;
import org.eclipse.xtext.ui.guice.AbstractGuiceAwareExecutableExtensionFactory;
import org.osgi.framework.Bundle;
import com.google.inject.Injector;
import org.eclipse.osbp.xtext.datamartdsl.ui.internal.DatamartDSLActivator;
/**
* This class was generated. Customizations should only happen in a newly
* introduced subclass.
*/
public class DatamartDSLExecutableExtensionFactory extends AbstractGuiceAwareExecutableExtensionFactory {
@Override
protected Bundle getBundle() {
return DatamartDSLActivator.getInstance().getBundle();
}
@Override
protected Injector getInjector() {
return DatamartDSLActivator.getInstance().getInjector(DatamartDSLActivator.ORG_ECLIPSE_OSBP_XTEXT_DATAMARTDSL_DATAMARTDSL);
}
}