blob: c99f59b982d02e77a483f8218c80680ac83411d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
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);
}
@Override
protected Process exec(String[] cmdLine, File workingDirectory) throws CoreException {
return super.exec(MacOSXLaunchingPlugin.wrap(getClass(), cmdLine), workingDirectory);
}
@Override
protected Process exec(String[] cmdLine, File workingDirectory, String[] envp) throws CoreException {
return super.exec(MacOSXLaunchingPlugin.wrap(getClass(), cmdLine), workingDirectory, envp);
}
@Override
protected String renderCommandLine(String[] commandLine) {
return super.renderCommandLine(MacOSXLaunchingPlugin.wrap(getClass(), commandLine));
}
}