Package org.eclipse.debug.ui.actions
Interface IToggleBreakpointsTarget
- All Known Subinterfaces:
- IToggleBreakpointsTargetExtension,- IToggleBreakpointsTargetExtension2
public interface IToggleBreakpointsTarget
An adapter to support breakpoint creation/deletion for an active part
 or selection within an active part. The debug platform provides
 retargettable actions for toggling line breakpoints, method breakpoints,
 and watchpoints. A debug implementation can plug into the global actions
 by providing an adapter of this type on relevant parts and objects.
 The debug platform provides one command and key binding for each breakpoint
 operation.
 
 When a part is activated, a retargettable action asks the part
 for its IToggleBreakpointTarget adapter. If one exists,
 that adapter is delegated to to perform breakpoint operations when
 the user invokes an associated action. If an adapter does not exist
 for the part, the retargettable actions asks selected objects in the
 active part for an adapter. Generally, a debug implementation will
 provide breakpoint adapters for relevant editors and model objects.
 
Clients are intended to implement this interface and provide instances as an adapter on applicable parts (for example, editors) and objects (for example, methods and fields) that support breakpoint toggling.
- Since:
- 3.0
- 
Method SummaryModifier and TypeMethodDescriptionbooleancanToggleLineBreakpoints(IWorkbenchPart part, ISelection selection) Returns whether line breakpoints can be toggled on the given selection.booleancanToggleMethodBreakpoints(IWorkbenchPart part, ISelection selection) Returns whether method breakpoints can be toggled on the given selection.booleancanToggleWatchpoints(IWorkbenchPart part, ISelection selection) Returns whether watchpoints can be toggled on the given selection.voidtoggleLineBreakpoints(IWorkbenchPart part, ISelection selection) Creates new line breakpoints or removes existing breakpoints.voidtoggleMethodBreakpoints(IWorkbenchPart part, ISelection selection) Creates new method breakpoints or removes existing breakpoints.voidtoggleWatchpoints(IWorkbenchPart part, ISelection selection) Creates new watchpoints or removes existing breakpoints.
- 
Method Details- 
toggleLineBreakpointsCreates new line breakpoints or removes existing breakpoints. The selection varies depending on the given part. For example, a text selection is provided for text editors, and a structured selection is provided for tree views, and may be a multi-selection.- Parameters:
- part- the part on which the action has been invoked
- selection- selection on which line breakpoints should be toggled
- Throws:
- CoreException- if unable to perform the action
 
- 
canToggleLineBreakpointsReturns whether line breakpoints can be toggled on the given selection. The selection varies depending on the given part. For example, a text selection is provided for text editors, and a structured selection is provided for tree views, and may be a multi-selection.- Parameters:
- part- the part on which the action has been invoked
- selection- selection on which line breakpoints may be toggled
- Returns:
- whether line breakpoints can be toggled on the given selection
 
- 
toggleMethodBreakpointsCreates new method breakpoints or removes existing breakpoints. The selection varies depending on the given part. For example, a text selection is provided for text editors, and a structured selection is provided for tree views, and may be a multi-selection.- Parameters:
- part- the part on which the action has been invoked
- selection- selection on which method breakpoints should be toggled
- Throws:
- CoreException- if unable to perform the action
 
- 
canToggleMethodBreakpointsReturns whether method breakpoints can be toggled on the given selection. The selection varies depending on the given part. For example, a text selection is provided for text editors, and a structured selection is provided for tree views, and may be a multi-selection.- Parameters:
- part- the part on which the action has been invoked
- selection- selection on which method breakpoints may be toggled
- Returns:
- whether method breakpoints can be toggled on the given selection
 
- 
toggleWatchpointsCreates new watchpoints or removes existing breakpoints. The selection varies depending on the given part. For example, a text selection is provided for text editors, and a structured selection is provided for tree views, and may be a multi-selection.- Parameters:
- part- the part on which the action has been invoked
- selection- selection on which watchpoints should be toggled
- Throws:
- CoreException- if unable to perform the action
 
- 
canToggleWatchpointsReturns whether watchpoints can be toggled on the given selection. The selection varies depending on the given part. For example, a text selection is provided for text editors, and a structured selection is provided for tree views, and may be a multi-selection.- Parameters:
- part- the part on which the action has been invoked
- selection- selection on which watchpoints may be toggled
- Returns:
- whether watchpoints can be toggled on the given selection
 
 
-