Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2012-02-22 15:25:07 +0000
committerMike Rennie2012-02-22 15:25:07 +0000
commitb05618ce4895f4d114508b792437880947f1167b (patch)
tree5e3d0842b2cebe9ca4d45fe78d2e1388ae318bd4 /org.eclipse.debug.ui/ui
parentf8db67f5e6ef22a2768e856d60a653b792f02385 (diff)
downloadeclipse.platform.debug-b05618ce4895f4d114508b792437880947f1167b.tar.gz
eclipse.platform.debug-b05618ce4895f4d114508b792437880947f1167b.tar.xz
eclipse.platform.debug-b05618ce4895f4d114508b792437880947f1167b.zip
Bug 372216 - IToggleBreakpointsTargetExtension2 methods must specify
that event may be null
Diffstat (limited to 'org.eclipse.debug.ui/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