public interface IBreakpointsListener
This interface is analogous to IBreakpointListener
except
notifications are batched for more than one breakpoint when possible.
Clients may implement this interface.
IBreakpointManager
Modifier and Type | Method and Description |
---|---|
void |
breakpointsAdded(IBreakpoint[] breakpoints)
Notifies this listener that the given breakpoints have been added
to the breakpoint manager.
|
void |
breakpointsChanged(IBreakpoint[] breakpoints,
IMarkerDelta[] deltas)
Notifies this listener that the given breakpoints have
changed, as described by the corresponding deltas.
|
void |
breakpointsRemoved(IBreakpoint[] breakpoints,
IMarkerDelta[] deltas)
Notifies this listener that the given breakpoints have been removed
from the breakpoint manager.
|
void breakpointsAdded(IBreakpoint[] breakpoints)
breakpoints
- the added breakpointsvoid breakpointsRemoved(IBreakpoint[] breakpoints, IMarkerDelta[] deltas)
breakpoints
- the removed breakpointsdeltas
- the associated marker deltas. Entries may be
null
when a breakpoint is removed from the breakpoint
manager without being deletedIMarkerDelta
void breakpointsChanged(IBreakpoint[] breakpoints, IMarkerDelta[] deltas)
breakpoints
- the changed breakpointsdeltas
- the marker deltas that describe the changes
with the markers associated with the given breakpoints. Entries
may be null
when a breakpoint change does not generate
a marker deltaIMarkerDelta
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.