1 19 20 package org.netbeans.api.debugger; 21 22 import java.beans.PropertyChangeEvent ; 23 24 30 public class DebuggerManagerAdapter implements LazyDebuggerManagerListener { 31 32 37 public Breakpoint[] initBreakpoints () { 38 return new Breakpoint [0]; 39 } 40 41 46 public void breakpointAdded (Breakpoint breakpoint) { 47 } 48 49 54 public void breakpointRemoved (Breakpoint breakpoint) { 55 } 56 57 62 public void initWatches () { 63 } 64 65 70 public void watchAdded (Watch watch) { 71 } 72 73 78 public void watchRemoved (Watch watch) { 79 } 80 81 86 public void sessionAdded (Session session) { 87 } 88 89 94 public void sessionRemoved (Session session) { 95 } 96 97 102 public void engineAdded (DebuggerEngine engine) { 103 } 104 105 110 public void engineRemoved (DebuggerEngine engine) { 111 } 112 113 public void propertyChange (PropertyChangeEvent evt) { 114 } 115 116 public String [] getProperties () { 117 return new String [0]; 118 } 119 } 120 | Popular Tags |