blob: 5ded05a28df42d48ac32008bc802795cd6eff2f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 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.runtime.evaluation;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.evaluation.Executor;
/**
* A TransformationExecutor supervises the execution of an auto-generated transformation.
*
* @noimplement
*/
public interface TransformationExecutor extends Executor
{
@Override
void dispose();
Boolean execute() throws Exception;
@NonNull ModelsManager getModelsManager();
@NonNull Transformer getTransformer();
@NonNull TypedModelInstance getTypedModelInstance(@NonNull String modelName);
void setSuppressFailureDiagnosis(boolean suppressFailureDiagnosis);
}