Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2004-01-28 20:52:16 +0000
committerAlain Magloire2004-01-28 20:52:16 +0000
commit12ac7e97c79558d7165e637b942132955d9fbe54 (patch)
tree13a2fd3232c2a782f12cf53be24c46b94255fa89
parent8d6cbf9b4bd359fb25a164556d728e1abc9d707f (diff)
downloadorg.eclipse.cdt-12ac7e97c79558d7165e637b942132955d9fbe54.tar.gz
org.eclipse.cdt-12ac7e97c79558d7165e637b942132955d9fbe54.tar.xz
org.eclipse.cdt-12ac7e97c79558d7165e637b942132955d9fbe54.zip
new method setOperation().
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/CLICommand.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/CLICommand.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/CLICommand.java
index 1cf0d811bdc..8e6d1c2817b 100644
--- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/CLICommand.java
+++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/command/CLICommand.java
@@ -20,6 +20,10 @@ public class CLICommand extends Command
operation = oper;
}
+ public void setOperation(String op) {
+ operation = op;
+ }
+
public String getOperation() {
return operation;
}

Back to the top