blob: bd7e26e786b7c3d0c8c807cf85ccc0b1782bd3d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Willink Transformations and others.
* 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.cs2as.runtime;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.ocl.pivot.CompleteEnvironment;
import org.eclipse.qvtd.pivot.qvtbase.evaluation.AbstractTransformationEvaluator;
import org.eclipse.qvtd.pivot.qvtbase.evaluation.TransformationExecutor;
public class QVTiTxEvaluator extends AbstractTransformationEvaluator {
public QVTiTxEvaluator(CompleteEnvironment environment, Class<? extends TransformationExecutor> txClass)
throws IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
super(environment, txClass);
}
}