Class inria.meije.rc.sugarcubes.BinaryInstruction
All Packages Class Hierarchy This Package Previous Next Index
Class inria.meije.rc.sugarcubes.BinaryInstruction
java.lang.Object
|
+----inria.meije.rc.sugarcubes.Instruction
|
+----inria.meije.rc.sugarcubes.BinaryInstruction
- public class BinaryInstruction
- extends Instruction
The abstract class of binary instructions that have two
components, left and right, which are also instructions.
-
left
- The two components, which are instructions.
-
right
- The two components, which are instructions.
-
BinaryInstruction()
-
-
clone()
- Instruction implements cloneable.
-
equals(Instruction)
- Equality of two instructions implies that they are of the same type.
-
exploration(Machine)
- A hook for analyzing an instruction.
-
reset()
- To reset the instruction.
left
protected Instruction left
- The two components, which are instructions.
right
protected Instruction right
- The two components, which are instructions.
BinaryInstruction
public BinaryInstruction()
reset
public void reset()
- To reset the instruction.
- Overrides:
- reset in class Instruction
equals
public boolean equals(Instruction inst)
- Equality of two instructions implies that they are of the same type.
- Overrides:
- equals in class Instruction
exploration
protected boolean exploration(Machine machine)
- A hook for analyzing an instruction.
- Overrides:
- exploration in class Instruction
clone
public Object clone()
- Instruction implements cloneable.
- Overrides:
- clone in class Instruction
All Packages Class Hierarchy This Package Previous Next Index