blob: 700a50fbe933926c0ce3087f1499530fbc170480 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2018 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Robert Bosch GmbH - initial API and implementation
********************************************************************************
*/
package custmodule;
import custTemplates.CustTransformer;
import module.DefaultM2TInjectorModule;
import templates.M2T_Output_Transformer;
public class CustM2TInjectorModule extends DefaultM2TInjectorModule {
@Override
protected void initializeBaseConfiguration() {
super.initializeBaseConfiguration();
bind(M2T_Output_Transformer.class).to(CustTransformer.class);
}
}