1 19 20 package org.netbeans.modules.debugger.importd2; 21 22 import org.openide.debugger.Debugger; 23 24 import org.netbeans.modules.debugger.*; 25 26 27 32 public class ImportDebuggerImpl extends DebuggerImpl { 33 34 static ImportDebugger impl; 35 36 37 42 public String getDisplayName () { 43 return ImportDebugger.getLocString ("CTL_Import_Debugger"); 44 } 45 46 49 public AbstractDebugger createDebugger () { 50 if (impl == null) impl = new ImportDebugger (); 51 return new org.netbeans.modules.debugger.support.DelegatingDebugger (impl); 52 } 53 } 54 55 | Popular Tags |