blob: 1269154bf311441cf4c2eea106eb743db65ef104 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 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:
* R.Dvorak and others - QVTo debugger framework
* E.D.Willink - revised API for OCL/QVTi debugger framework
*******************************************************************************/
package org.eclipse.qvtd.debug.evaluator;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.examples.debug.vm.evaluator.IVMModelManager;
import org.eclipse.ocl.pivot.utilities.MetamodelManager;
import org.eclipse.qvtd.pivot.qvtimperative.evaluation.QVTiModelManager;
import org.eclipse.qvtd.pivot.qvtimperative.evaluation.QVTiTransformationAnalysis;
/**
* QVTc Domain Manager is the class responsible for managing the QVTc virtual
* machine meta-models and models.
* A QVTc Domain Manager object encapsulates the domain information need to
* modify the domains's models.
*/
public class QVTiVMModelManager extends QVTiModelManager implements IVMModelManager
{
public QVTiVMModelManager(@NonNull QVTiTransformationAnalysis transformationAnalysis) {
super(transformationAnalysis);
}
@Override
public @NonNull MetamodelManager getMetamodelManager() {
return metamodelManager;
}
}