Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/org.atl.engine.vm/src/org/atl/engine/vm/ASMInstructionWithOperand.java')
-rw-r--r--deprecated/org.atl.engine.vm/src/org/atl/engine/vm/ASMInstructionWithOperand.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/deprecated/org.atl.engine.vm/src/org/atl/engine/vm/ASMInstructionWithOperand.java b/deprecated/org.atl.engine.vm/src/org/atl/engine/vm/ASMInstructionWithOperand.java
deleted file mode 100644
index 78fa7fe7..00000000
--- a/deprecated/org.atl.engine.vm/src/org/atl/engine/vm/ASMInstructionWithOperand.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package org.atl.engine.vm;
-
-/**
- * @author Frédéric Jouault
- */
-public class ASMInstructionWithOperand extends ASMInstruction {
-
- public ASMInstructionWithOperand(String mnemonic, String operand) {
- super(mnemonic);
- this.operand = operand;
- }
-
- public String getOperand() {
- return operand;
- }
-
- public void setOperand(String operand) {
- this.operand = operand;
- }
-
- public String toString() {
- return mnemonic + " " + operand;
- }
-
- private String operand;
-}
-

Back to the top