blob: b4c723ad560e345185e5bea2a0664b7d1b309168 [file] [log] [blame]
/**
* This file was copied and re-packaged automatically by
* org.eclipse.qvtd.doc.miniocl.build.MiniOCLBuildEverything
* from
* ..\..\plugins\org.eclipse.qvtd.runtime\src\org\eclipse\qvtd\runtime\internal\cs2as\CS2ASTransformationExecutor.java
*
* Do not edit this file.
*/
/*******************************************************************************
* Copyright (c) 2016, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.doc.minioclcs.xtext.tx;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.utilities.EnvironmentFactory;
public class CS2ASTransformationExecutor extends AbstractTransformationExecutor {
public CS2ASTransformationExecutor(@NonNull EnvironmentFactory environmentFactory,
@NonNull Class<? extends CS2ASTransformer> txClass)
throws ReflectiveOperationException {
super(environmentFactory, txClass);
}
@Override
public @NonNull CS2ASTransformer getTransformer() {
return (CS2ASTransformer) super.getTransformer();
}
}