Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/commands')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java8
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java4
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IEnabledStateRequest.java2
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java10
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IStepFiltersHandler.java2
5 files changed, 13 insertions, 13 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.
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java
index b72100554..c1f30cf17 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java
@@ -13,7 +13,7 @@ package org.eclipse.debug.core.commands;
import org.eclipse.debug.core.IRequest;
/**
- * A request to execute a command on specific elements. A debug command request is
+ * A request to execute a command on specific elements. A debug command request is
* passed to a {@link IDebugCommandHandler} when a command is invoked.
* <p>
* Clients that invoke command handlers may implement this interface.
@@ -24,7 +24,7 @@ public interface IDebugCommandRequest extends IRequest {
/**
* Returns the elements to execute a command on.
- *
+ *
* @return elements to execute a command on
*/
public Object[] getElements();
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IEnabledStateRequest.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IEnabledStateRequest.java
index ee3e5b50f..428323b86 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IEnabledStateRequest.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IEnabledStateRequest.java
@@ -25,7 +25,7 @@ public interface IEnabledStateRequest extends IDebugCommandRequest {
/**
* Sets the enabled state of a command handler.
- *
+ *
* @param result whether enabled
*/
public void setEnabled(boolean result);
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java
index 0969d70b3..69097a7c4 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java
@@ -4,22 +4,22 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.core.commands;
/**
- * A restart command allows the debugger to quickly restart the current debug
- * session without terminating and re-launching.
+ * A restart command allows the debugger to quickly restart the current debug
+ * session without terminating and re-launching.
* <p>
* Clients may implement this interface. The debug platform provides a
- * restart action that delegates to this handler interface. Platform does not
+ * restart action that delegates to this handler interface. Platform does not
* provide a default implementation of this handler, so to enable this action
* the debugger implementation must provide one.
* </p>
- *
+ *
* @since 3.6
*/
public interface IRestartHandler extends IDebugCommandHandler {
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IStepFiltersHandler.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IStepFiltersHandler.java
index 5d0b7391d..eb9a32b42 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IStepFiltersHandler.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IStepFiltersHandler.java
@@ -16,7 +16,7 @@ import org.eclipse.debug.core.DebugPlugin;
* A step filters handler typically toggles the use of step filters
* in a debug session based on the user preference setting. To determine if step filters
* should be enabled use the method <code>isUseStepFilters()</code> in
- * {@link DebugPlugin}.
+ * {@link DebugPlugin}.
* <p>
* Clients may implement this interface. The debug platform provides a
* toggle step filters action that delegates to this handler interface. As well, the

Back to the top