blob: 2974afc8526b8266149b3e42a45588da627b11a4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 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.pivot.qvtbase.evaluation;
import java.util.Collection;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.evaluation.ModelManager;
public interface TransformationExecutor extends ModelManager
{
void addRootObjects(@NonNull String modelName, @NonNull Iterable<? extends EObject> rootObjects);
@NonNull Collection<EObject> getRootObjects(@NonNull String modelName);
boolean run() throws Exception;
}