Package org.eclipse.debug.core
Interface IBreakpointListener
- All Known Subinterfaces:
- IDebugTarget
public interface IBreakpointListener
A breakpoint listener is notified of breakpoint additions,
 removals, and changes. Listeners register and unregister with the
 breakpoint manager.
 
Clients may implement this interface.
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoidbreakpointAdded(IBreakpoint breakpoint) Notifies this listener that the given breakpoint has been added to the breakpoint manager.voidbreakpointChanged(IBreakpoint breakpoint, IMarkerDelta delta) Notifies this listener that an attribute of the given breakpoint has changed, as described by the delta.voidbreakpointRemoved(IBreakpoint breakpoint, IMarkerDelta delta) Notifies this listener that the given breakpoint has been removed from the breakpoint manager.
- 
Method Details- 
breakpointAddedNotifies this listener that the given breakpoint has been added to the breakpoint manager.- Parameters:
- breakpoint- the added breakpoint
- Since:
- 2.0
 
- 
breakpointRemovedNotifies this listener that the given breakpoint has been removed from the breakpoint manager. If the given breakpoint has been removed because it has been deleted, the associated marker delta is also provided.- Parameters:
- breakpoint- the removed breakpoint
- delta- the associated marker delta, or- nullwhen the breakpoint is removed from the breakpoint manager without being deleted
- Since:
- 2.0
- See Also:
 
- 
breakpointChangedNotifies this listener that an attribute of the given breakpoint has changed, as described by the delta.- Parameters:
- breakpoint- the changed breakpoint
- delta- the marker delta that describes the changes with the marker associated with the given breakpoint, or- nullwhen the breakpoint change does not generate a marker delta
- Since:
- 2.0
- See Also:
 
 
-