1 11 package org.eclipse.jdt.internal.launching.macosx; 12 13 import java.io.File ; 14 15 import org.eclipse.core.runtime.CoreException; 16 import org.eclipse.jdt.internal.launching.StandardVMDebugger; 17 import org.eclipse.jdt.launching.IVMInstall; 18 19 public class MacOSXDebugVMRunner extends StandardVMDebugger { 20 21 public MacOSXDebugVMRunner(IVMInstall vmInstance) { 22 super(vmInstance); 23 } 24 25 protected Process exec(String [] cmdLine, File workingDirectory) throws CoreException { 26 return super.exec(MacOSXLaunchingPlugin.wrap(getClass(), cmdLine), workingDirectory); 27 } 28 29 protected Process exec(String [] cmdLine, File workingDirectory, String [] envp) throws CoreException { 30 return super.exec(MacOSXLaunchingPlugin.wrap(getClass(), cmdLine), workingDirectory, envp); 31 } 32 } 33 | Popular Tags |