blob: cef9bece3fe881a28bbdd9ca087b901774222b3f [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.pivot.qvtbase.evaluation;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.CompleteEnvironment;
import org.eclipse.ocl.pivot.evaluation.Executor;
import org.eclipse.ocl.pivot.evaluation.ModelManager;
import org.eclipse.ocl.pivot.ids.IdResolver;
import org.eclipse.ocl.pivot.internal.complete.CompleteEnvironmentInternal;
import org.eclipse.ocl.pivot.internal.library.executor.ExecutorManager;
import org.eclipse.ocl.pivot.utilities.ClassUtil;
public abstract class AbstractTransformationEvaluator extends ExecutorManager implements TransformationEvaluator
{
protected final @NonNull TransformationExecutor executor;
public AbstractTransformationEvaluator(@NonNull CompleteEnvironment environment, Constructor<? extends TransformationExecutor> txConstructor)
throws IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {
super(environment);
executor = ClassUtil.nonNullState(txConstructor.newInstance(this));
}
public AbstractTransformationEvaluator(@NonNull CompleteEnvironment environment, Class<? extends TransformationExecutor> txClass)
throws IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException , NoSuchMethodException {
this(environment, ClassUtil.nonNullState(txClass.getConstructor(Executor.class)));
}
@Override
public @NonNull TransformationExecutor getTransformationExecutor() {
return executor;
}
@Override
public @NonNull IdResolver getIdResolver() {
return ((CompleteEnvironmentInternal)environment).getEnvironmentFactory().getIdResolver();
}
@Override
public @NonNull ModelManager getModelManager() {
return executor;
}
}