Eclipse Platform
Release 3.0

Uses of Interface
org.eclipse.debug.core.model.IBreakpoint

Packages that use IBreakpoint
org.eclipse.debug.core Provides support for launching programs, breakpoint management, expression management, and debug events. 
org.eclipse.debug.core.model Defines interfaces for debug model elements, source lookup, and launching. 
 

Uses of IBreakpoint in org.eclipse.debug.core
 

Methods in org.eclipse.debug.core that return IBreakpoint
 IBreakpoint IBreakpointManager.getBreakpoint(IMarker marker)
          Returns the breakpoint associated with the given marker or null if no such breakpoint exists
 IBreakpoint[] IBreakpointManager.getBreakpoints()
          Returns a collection of all registered breakpoints.
 IBreakpoint[] IBreakpointManager.getBreakpoints(String modelIdentifier)
          Returns a collection of all breakpoints registered for the given debug model.
 

Methods in org.eclipse.debug.core with parameters of type IBreakpoint
 void IBreakpointListener.breakpointAdded(IBreakpoint breakpoint)
          Notifies this listener that the given breakpoint has been added to the breakpoint manager.
 void IBreakpointListener.breakpointRemoved(IBreakpoint breakpoint, IMarkerDelta delta)
          Notifies this listener that the given breakpoint has been removed from 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 IBreakpointsListener.breakpointsAdded(IBreakpoint[] breakpoints)
          Notifies this listener that the given breakpoints have been added to the breakpoint manager.
 void IBreakpointsListener.breakpointsRemoved(IBreakpoint[] breakpoints, IMarkerDelta[] deltas)
          Notifies this listener that the given breakpoints have been removed from 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 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.
 boolean IBreakpointManager.isRegistered(IBreakpoint breakpoint)
          Returns whether the given breakpoint is currently registered with this breakpoint manager.
 void IBreakpointManager.fireBreakpointChanged(IBreakpoint breakpoint)
          Notifies all registered listeners that the given breakpoint has changed.
 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.
 

Uses of IBreakpoint in org.eclipse.debug.core.model
 

Subinterfaces of IBreakpoint in org.eclipse.debug.core.model
 interface ILineBreakpoint
          A breakpoint that can be located at a specific line of source code.
 

Classes in org.eclipse.debug.core.model that implement IBreakpoint
 class Breakpoint
          Abstract implementation of a breakpoint.
 class LineBreakpoint
          Abstract implementation of a line breakpoint.
 

Methods in org.eclipse.debug.core.model that return IBreakpoint
 IBreakpoint[] IThread.getBreakpoints()
          Returns the breakpoints that caused this thread to suspend, or an empty collection if this thread is not suspended or was not suspended by a breakpoint.
 

Methods in org.eclipse.debug.core.model with parameters of type IBreakpoint
 boolean IDebugTarget.supportsBreakpoint(IBreakpoint breakpoint)
          Returns whether this target can install the given breakpoint.
 


Eclipse Platform
Release 3.0

Guidelines for using Eclipse APIs.

Copyright (c) IBM Corp. and others 2000, 2004. All rights reserved.