Uses of Interface
org.eclipse.debug.core.model.IBreakpoint
Packages that use IBreakpoint
Package
Description
Provides support for launching programs, breakpoint management, expression management,
and debug events.
Defines interfaces for debug model elements, source lookup, and launching.
Provides a generic debugger user interface that clients may customize via standard
workbench extension points.
Provides a set of actions related to running and debugging applications.
-
Uses of IBreakpoint in org.eclipse.debug.core
Methods in org.eclipse.debug.core that return IBreakpointModifier and TypeMethodDescriptionIBreakpointManager.getBreakpoint(IMarker marker) Returns the breakpoint associated with the given marker ornullif no such breakpoint existsIBreakpointManager.getBreakpoints()Returns a collection of all registered breakpoints.IBreakpointManager.getBreakpoints(String modelIdentifier) Returns a collection of all breakpoints registered for the given debug model.IBreakpointManager.getTriggerPoints()Returns the triggers for the breakpoints associated with the workspace ornullif no such breakpoint existsMethods in org.eclipse.debug.core with parameters of type IBreakpointModifier and TypeMethodDescriptionvoidIBreakpointManager.addBreakpoint(IBreakpoint breakpoint) Adds the given breakpoint to the collection of registered breakpoints in the workspace and notifies all registered listeners.voidIBreakpointManager.addBreakpoints(IBreakpoint[] breakpoints) Adds the given breakpoints to the collection of registered breakpoints in the workspace and notifies all registered listeners.voidIBreakpointManager.addTriggerPoint(IBreakpoint breakpoint) Adds the given breakpoint as the triggering breakpoint in the workspace and notifies all registered listeners.voidIBreakpointListener.breakpointAdded(IBreakpoint breakpoint) Notifies this listener that the given breakpoint has been added to the breakpoint manager.voidIBreakpointListener.breakpointChanged(IBreakpoint breakpoint, IMarkerDelta delta) Notifies this listener that an attribute of the given breakpoint has changed, as described by the delta.default voidIBreakpointManagerListener.breakpointManagerTriggerPointChanged(IBreakpoint triggerBreakpoint) Notifies the listener that the breakpoint manager's trigger point has changed.voidIBreakpointListener.breakpointRemoved(IBreakpoint breakpoint, IMarkerDelta delta) Notifies this listener that the given breakpoint has been removed from the breakpoint manager.voidIBreakpointsListener.breakpointsAdded(IBreakpoint[] breakpoints) Notifies this listener that the given breakpoints have been added to the breakpoint manager.voidIBreakpointsListener.breakpointsChanged(IBreakpoint[] breakpoints, IMarkerDelta[] deltas) Notifies this listener that the given breakpoints have changed, as described by the corresponding deltas.voidIBreakpointsListener.breakpointsRemoved(IBreakpoint[] breakpoints, IMarkerDelta[] deltas) Notifies this listener that the given breakpoints have been removed from the breakpoint manager.voidIBreakpointManager.enableTriggerPoints(IBreakpoint[] triggerPoints, boolean enable) Revisit all the trigger points to activate/deactivate trigger points.voidIBreakpointManager.fireBreakpointChanged(IBreakpoint breakpoint) Notifies all registered listeners that the given breakpoint has changed.IBreakpointManager.getTypeName(IBreakpoint breakpoint) Returns the name (user readable String) of the given breakpoint's type ornullif none has been specified.booleanIBreakpointManager.isRegistered(IBreakpoint breakpoint) Returns whether the given breakpoint is currently registered with this breakpoint manager.voidIBreakpointManager.removeBreakpoint(IBreakpoint breakpoint, boolean delete) Removes the given breakpoint from the breakpoint manager, deletes the marker associated with the breakpoint if thedeleteflag istrue, and notifies all registered listeners.voidIBreakpointManager.removeBreakpoints(IBreakpoint[] breakpoints, boolean delete) Removes the given breakpoints from the breakpoint manager, deletes the markers associated with the breakpoints if thedeleteflag istrue, and notifies all registered listeners.voidIBreakpointManager.removeTriggerPoint(IBreakpoint breakpoint) Removes the given breakpoint as the trigger breakpoint in the workspace and notifies all registered listeners. -
Uses of IBreakpoint in org.eclipse.debug.core.model
Subinterfaces of IBreakpoint in org.eclipse.debug.core.modelModifier and TypeInterfaceDescriptioninterfaceA breakpoint that can be located at a specific line of source code.interfaceA breakpoint that suspends when an associated variable is read or written.Classes in org.eclipse.debug.core.model that implement IBreakpointModifier and TypeClassDescriptionclassAbstract implementation of a breakpoint.classAbstract implementation of a line breakpoint.Methods in org.eclipse.debug.core.model that return IBreakpointModifier and TypeMethodDescriptionIThread.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.protected IBreakpoint[]LaunchConfigurationDelegate.getBreakpoints(ILaunchConfiguration configuration) Returns the breakpoint collection that is relevant for this launch delegate.Methods in org.eclipse.debug.core.model with parameters of type IBreakpointModifier and TypeMethodDescriptionbooleanIBreakpointImportParticipant.matches(Map<String, Object> attributes, IBreakpoint breakpoint) Determines if the given attributes match the given breakpoint.booleanIDebugTarget.supportsBreakpoint(IBreakpoint breakpoint) Returns whether this target can install the given breakpoint.voidIBreakpointImportParticipant.verify(IBreakpoint breakpoint) Verifies the state of the breakpoint once it has been imported. -
Uses of IBreakpoint in org.eclipse.debug.ui
Methods in org.eclipse.debug.ui with parameters of type IBreakpointModifier and TypeMethodDescriptionvoidAbstractBreakpointOrganizerDelegate.addBreakpoint(IBreakpoint breakpoint, IAdaptable category) voidIBreakpointOrganizerDelegate.addBreakpoint(IBreakpoint breakpoint, IAdaptable category) Adds the specified breakpoint to the given category.voidIBreakpointOrganizerDelegateExtension.addBreakpoints(IBreakpoint[] breakpoints, IAdaptable category) Adds the specified breakpoints to the given category.booleanAbstractBreakpointOrganizerDelegate.canAdd(IBreakpoint breakpoint, IAdaptable category) booleanIBreakpointOrganizerDelegate.canAdd(IBreakpoint breakpoint, IAdaptable category) Returns whether the given breakpoint can be categorized in the specified category.booleanAbstractBreakpointOrganizerDelegate.canRemove(IBreakpoint breakpoint, IAdaptable category) booleanIBreakpointOrganizerDelegate.canRemove(IBreakpoint breakpoint, IAdaptable category) Returns whether the given breakpoint can be removed from the given category.static voidDebugUITools.deleteBreakpoints(IBreakpoint[] breakpoints, Shell shell, IProgressMonitor progressMonitor) Deletes the given breakpoints using the operation history, which allows to undo the deletion.IBreakpointOrganizerDelegate.getCategories(IBreakpoint breakpoint) Returns objects representing the categories of the specified breakpoint ornullif this organizer cannot classify the breakpoint.voidAbstractBreakpointOrganizerDelegate.removeBreakpoint(IBreakpoint breakpoint, IAdaptable category) voidIBreakpointOrganizerDelegate.removeBreakpoint(IBreakpoint breakpoint, IAdaptable category) Removes the specified breakpoint from the given category.voidIBreakpointOrganizerDelegateExtension.removeBreakpoints(IBreakpoint[] breakpoints, IAdaptable category) Removes the specified breakpoints from the given category. -
Uses of IBreakpoint in org.eclipse.debug.ui.actions
Methods in org.eclipse.debug.ui.actions that return IBreakpointModifier and TypeMethodDescriptionprotected IBreakpointRulerBreakpointAction.getBreakpoint()Returns the breakpoint at the last line of mouse activity in the ruler ornullif none.ImportBreakpointsOperation.getImportedBreakpoints()Returns the breakpoints that were imported by this operation, possibly an empty list.Constructors in org.eclipse.debug.ui.actions with parameters of type IBreakpointModifierConstructorDescriptionExportBreakpointsOperation(IBreakpoint[] breakpoints) Constructs an operation to export breakpoints to a string buffer.ExportBreakpointsOperation(IBreakpoint[] breakpoints, String fileName) Constructs an operation to export breakpoints to a file.RunToLineHandler(IDebugTarget target, ISuspendResume suspendResume, IBreakpoint breakpoint) Constructs a handler to perform a run to line operation.