|
 |
|
|
Uses of Interface org.eclipse.debug.core.model.IBreakpoint
Methods in
org.eclipse.debug.core with parameters of type
IBreakpoint
|
void
|
IBreakpointManager.
addBreakpoint
(
IBreakpoint breakpoint)
Adds the given breakpoint to the collection of registered breakpoints
in the workspace and notifies all registered listeners. |
void
|
IBreakpointManager.
addBreakpoints
(
IBreakpoint[] breakpoints)
Adds the given breakpoints to the collection of registered breakpoints
in the workspace and notifies all registered listeners. |
void
|
IBreakpointListener.
breakpointAdded
(
IBreakpoint breakpoint)
Notifies this listener that the given breakpoint has been added
to the breakpoint manager. |
void
|
IBreakpointListener.
breakpointChanged
(
IBreakpoint breakpoint,
IMarkerDelta delta)
Notifies this listener that an attribute of the given breakpoint has
changed, as described by the delta. |
void
|
IBreakpointListener.
breakpointRemoved
(
IBreakpoint breakpoint,
IMarkerDelta delta)
Notifies this listener that the given breakpoint has been removed
from the breakpoint manager. |
void
|
IBreakpointsListener.
breakpointsAdded
(
IBreakpoint[] breakpoints)
Notifies this listener that the given breakpoints have been added
to the breakpoint manager. |
void
|
IBreakpointsListener.
breakpointsChanged
(
IBreakpoint[] breakpoints,
IMarkerDelta[] deltas)
Notifies this listener that the given breakpoints have
changed, as described by the corresponding deltas. |
void
|
IBreakpointsListener.
breakpointsRemoved
(
IBreakpoint[] breakpoints,
IMarkerDelta[] deltas)
Notifies this listener that the given breakpoints have been removed
from the breakpoint manager. |
void
|
IBreakpointManager.
fireBreakpointChanged
(
IBreakpoint breakpoint)
Notifies all registered listeners that the given
breakpoint has changed. |
String
|
IBreakpointManager.
getTypeName
(
IBreakpoint breakpoint)
Returns the name (user readable String) of the given
breakpoint's type or null if none has been
specified. |
boolean
|
IBreakpointManager.
isRegistered
(
IBreakpoint breakpoint)
Returns whether the given breakpoint is currently
registered with this breakpoint manager. |
void
|
IBreakpointManager.
removeBreakpoint
(
IBreakpoint breakpoint,
boolean delete)
Removes the given breakpoint from the breakpoint manager, deletes
the marker associated with the breakpoint if the delete flag
is true , and notifies all registered
listeners. |
void
|
IBreakpointManager.
removeBreakpoints
(
IBreakpoint[] breakpoints,
boolean delete)
Removes the given breakpoints from the breakpoint manager, deletes
the markers associated with the breakpoints if the delete flag
is true , and notifies all registered
listeners. |
Methods in
org.eclipse.debug.ui with parameters of type
IBreakpoint
|
void
|
IBreakpointOrganizerDelegate.
addBreakpoint
(
IBreakpoint breakpoint,
IAdaptable category)
Adds the specified breakpoint to the given category. |
void
|
AbstractBreakpointOrganizerDelegate.
addBreakpoint
(
IBreakpoint breakpoint,
IAdaptable category)
|
void
|
IBreakpointOrganizerDelegateExtension.
addBreakpoints
(
IBreakpoint[] breakpoints,
IAdaptable category)
Adds the specified breakpoints to the given category. |
boolean
|
IBreakpointOrganizerDelegate.
canAdd
(
IBreakpoint breakpoint,
IAdaptable category)
Returns whether the given breakpoint can be categorized in the
specified category. |
boolean
|
AbstractBreakpointOrganizerDelegate.
canAdd
(
IBreakpoint breakpoint,
IAdaptable category)
|
boolean
|
IBreakpointOrganizerDelegate.
canRemove
(
IBreakpoint breakpoint,
IAdaptable category)
Returns whether the given breakpoint can be removed from the given
category. |
boolean
|
AbstractBreakpointOrganizerDelegate.
canRemove
(
IBreakpoint breakpoint,
IAdaptable category)
|
IAdaptable[]
|
IBreakpointOrganizerDelegate.
getCategories
(
IBreakpoint breakpoint)
Returns objects representing the categories of the specified
breakpoint or null if this organizer cannot classify
the breakpoint. |
void
|
IBreakpointOrganizerDelegate.
removeBreakpoint
(
IBreakpoint breakpoint,
IAdaptable category)
Removes the specified breakpoint from the given category. |
void
|
AbstractBreakpointOrganizerDelegate.
removeBreakpoint
(
IBreakpoint breakpoint,
IAdaptable category)
|
void
|
IBreakpointOrganizerDelegateExtension.
removeBreakpoints
(
IBreakpoint[] breakpoints,
IAdaptable category)
Removes the specified breakpoints from the given category. |
Guidelines for using Eclipse APIs.
Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.
|
|
|