Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/commands/StepCommand.java')
-rw-r--r--plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/commands/StepCommand.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/commands/StepCommand.java b/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/commands/StepCommand.java
index 873c1a8e3..89a212bbd 100644
--- a/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/commands/StepCommand.java
+++ b/plugins/org.eclipse.tm.tcf.debug.ui/src/org/eclipse/tm/internal/tcf/debug/ui/commands/StepCommand.java
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2007, 2008 Wind River Systems, Inc. and others.
- * All rights reserved. This program and the accompanying materials
- * 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
- *
+ * All rights reserved. This program and the accompanying materials
+ * 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
*******************************************************************************/
@@ -33,12 +33,12 @@ abstract class StepCommand implements IDebugCommandHandler {
public StepCommand(TCFModel model) {
this.model = model;
}
-
+
protected abstract boolean canExecute(IRunControl.RunControlContext ctx);
-
+
protected abstract void execute(IDebugCommandRequest monitor,
IRunControl.RunControlContext ctx, boolean src_step, Runnable done);
-
+
public final void canExecute(final IEnabledStateRequest monitor) {
new TCFRunnable(model.getDisplay(), monitor) {
public void run() {
@@ -99,7 +99,7 @@ abstract class StepCommand implements IDebugCommandHandler {
};
return true;
}
-
+
private void execute(final IDebugCommandRequest monitor, final TCFRunnable request,
final Set<IRunControl.RunControlContext> set) {
int i = 0;

Back to the top