Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java
index fae4ef9af..c28f4733f 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java
@@ -21,7 +21,7 @@ package org.eclipse.debug.core.commands;
* delegates to the active context's {@link ITerminateHandler} implementation to update
* its enabled state and execute the command. Debug model elements may implement supported
* command handler interfaces directly or provide them as adapters. The debug platform
- * provides implementations of handlers for standard debug models.
+ * provides implementations of handlers for standard debug models.
* </p>
* @see org.eclipse.core.runtime.IAdaptable
* @see IDisconnectHandler
@@ -36,7 +36,7 @@ package org.eclipse.debug.core.commands;
* @since 3.3
*/
public interface IDebugCommandHandler {
-
+
/**
* Determines whether this handler can execute on the elements specified
* in the given request by reporting enabled state to the request.
@@ -56,7 +56,7 @@ public interface IDebugCommandHandler {
* @param request specifies elements to operate on and collects enabled state
*/
public void canExecute(IEnabledStateRequest request);
-
+
/**
* Executes this command on the elements specified in the given request
* reporting status to the given request and returns whether this handler should
@@ -64,7 +64,7 @@ public interface IDebugCommandHandler {
* <p>
* Implementations must be non-blocking and may respond asynchronously to the
* given request. Errors can reported by setting an appropriate status
- * on the given request. A request can be canceled by this handler or the caller.
+ * on the given request. A request can be canceled by this handler or the caller.
* A <code>null</code> status is equivalent to an OK status. When a request is
* complete, has encountered an error, or canceled, implementations must call
* <code>done()</code> on the given collector.

Back to the top