blob: 241969c0379bc23bb4eeb0fafc021b63a8080036 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 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.debug.core;
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.examples.debug.vm.IVMVirtualMachineShell;
import org.eclipse.ocl.examples.debug.vm.core.VMDebugTarget;
public class QVTiDebugTarget extends VMDebugTarget
{
public QVTiDebugTarget(IProcess process, IVMVirtualMachineShell vm) {
super(process, vm);
}
public @NonNull QVTiDebugCore getDebugCore() {
return QVTiDebugCore.INSTANCE;
}
public @NonNull String getModelIdentifier() {
return getDebugCore().getModelId();
}
}