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