Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2012-02-22 19:53:55 +0000
committerMike Rennie2012-02-22 19:53:55 +0000
commit5952f49fa60c398ebd0dec4ecd6bf97e4803366e (patch)
tree4a849f5f63cf6eef7ee1f9710b8094eaa9dae39d
parent5c262bb68d00bf5afe1fa59c20097a48fec550a2 (diff)
downloadeclipse.platform.debug-5952f49fa60c398ebd0dec4ecd6bf97e4803366e.tar.gz
eclipse.platform.debug-5952f49fa60c398ebd0dec4ecd6bf97e4803366e.tar.xz
eclipse.platform.debug-5952f49fa60c398ebd0dec4ecd6bf97e4803366e.zip
Bug 372216 - IToggleBreakpointsTargetExtension2 methods must specify
that event may be null
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/actions/IToggleBreakpointsTargetExtension2.java6
1 files changed, 3 insertions, 3 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 a4089700e..8a7bce3bb 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, may be <code>null</code>
+ * @param event the accompanying {@link Event} which can be <code>null</code> if unavailable
* @throws CoreException if unable to perform the action
*/
public void toggleBreakpointsWithEvent(IWorkbenchPart part, ISelection selection, Event event) throws CoreException;
@@ -50,8 +50,8 @@ 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, may be <code>null</code>
- * @return whether breakpoints can be toggled on the given selection with the given modifiers
+ * @param event the accompanying {@link Event} which can be <code>null</code> if unavailable
+ * @return whether breakpoints can be toggled on the given selection with the given {@link Event}
*/
public boolean canToggleBreakpointsWithEvent(IWorkbenchPart part, ISelection selection, Event event);
}

Back to the top