Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 06ce4757dd7203c8ea68d39cf4da9e3b2655bc38 (plain) (tree)
1
2
3
4
5
6
7
8


                                                                                
                                                                       
                                                           


                                         







                                                                                 





                                  
                                    
 
                               
 
/*******************************************************************************
 * Copyright (c) 2014 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 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * CONTRIBUTORS:
 * 		Henrik Rentz-Reichert (initial contribution)
 * 
 *******************************************************************************/

package org.eclipse.etrice.ui.behavior.fsm.provider;

import com.google.inject.Injector;

/**
 * @author Henrik Rentz-Reichert
 *
 */
public interface IInjectorProvider {

	Injector getInjector();
}

Back to the top