Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IToggleBreakpointsTargetExtension2.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IToggleBreakpointsTargetExtension2.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IToggleBreakpointsTargetExtension2.java
index 7d3c0cef7..a4089700e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IToggleBreakpointsTargetExtension2.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IToggleBreakpointsTargetExtension2.java
@@ -37,7 +37,7 @@ public interface IToggleBreakpointsTargetExtension2 extends IToggleBreakpointsTa
*
* @param part the part on which the action has been invoked
* @param selection selection on which line breakpoints should be toggled
- * @param event the key event from the double-click in the editor gutter
+ * @param event the key event from the double-click in the editor gutter, may be <code>null</code>
* @throws CoreException if unable to perform the action
*/
public void toggleBreakpointsWithEvent(IWorkbenchPart part, ISelection selection, Event event) throws CoreException;
@@ -50,7 +50,7 @@ public interface IToggleBreakpointsTargetExtension2 extends IToggleBreakpointsTa
*
* @param part the part on which the action has been invoked
* @param selection selection on which line breakpoints should be toggled
- * @param event the key event from the double-click in the editor gutter
+ * @param event the key event from the double-click in the editor gutter, may be <code>null</code>
* @return whether breakpoints can be toggled on the given selection with the given modifiers
*/
public boolean canToggleBreakpointsWithEvent(IWorkbenchPart part, ISelection selection, Event event);

Back to the top