blob: 24c0ccbeabcdf8ed3f375795783ef76c1f6be714 [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2002, 2003.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.launching.macosx;
import java.io.File;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.internal.launching.StandardVMDebugger;
import org.eclipse.jdt.launching.IVMInstall;
public class MacOSXDebugVMRunner extends StandardVMDebugger {
public MacOSXDebugVMRunner(IVMInstall vmInstance) {
super(vmInstance);
}
protected Process exec(String[] cmdLine, File workingDirectory) throws CoreException {
return super.exec(MacOSXLaunchingPlugin.wrap(getClass(), cmdLine), workingDirectory);
}
}