1 11 package org.eclipse.jdt.internal.launching; 12 13 14 import org.eclipse.debug.core.ILaunchManager; 15 import org.eclipse.jdt.launching.IVMInstallType; 16 import org.eclipse.jdt.launching.IVMRunner; 17 18 21 public class Standard11xVM extends StandardVM { 22 23 public Standard11xVM(IVMInstallType type, String id) { 24 super(type, id); 25 } 26 27 28 31 public IVMRunner getVMRunner(String mode) { 32 if (ILaunchManager.RUN_MODE.equals(mode)) { 33 return new Standard11xVMRunner(this); 34 } 35 return null; 36 } 37 38 39 } 40 41 | Popular Tags |