blob: 20cf288641dcccfdd07d86447ea5801ede0c99ac [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 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 app4mc.example.transform.m2t.configuration;
import org.eclipse.app4mc.transformation.TransformationDefinition;
import org.osgi.service.component.annotations.Component;
@Component
public class M2TTransformationDefinition implements TransformationDefinition {
@Override
public String getName() {
return "Amalthea to text transformation";
}
@Override
public String getDescription() {
return "Example that shows the implementation of an Amalthea model to text transformation";
}
@Override
public String getM2MKey() {
return null;
}
@Override
public String getM2TKey() {
return "Amalthea2Text";
}
}