1 19 20 package org.netbeans.modules.debugger.importd; 21 22 import org.netbeans.modules.debugger.*; 23 24 36 public class ImportDebuggerInfo extends AbstractDebuggerInfo { 37 38 45 public ImportDebuggerInfo ( 46 String className, 47 String [] argv, 48 String stopClassName 49 ) { 50 super ( 51 className, 52 argv, 53 stopClassName 54 ); 55 } 56 57 62 public String getProcessName () { 63 return getClassName (); 64 } 65 66 71 public String getLocationName () { 72 return "localhost"; 73 } 74 75 80 public DebuggerImpl getDebuggerImpl () { 81 return ImportDebuggerModule.getDebuggerImpl (); 82 } 83 } 84 | Popular Tags |