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.

Variable Index

 o left
The two components, which are instructions.
 o right
The two components, which are instructions.

Constructor Index

 o BinaryInstruction()

Method Index

 o clone()
Instruction implements cloneable.
 o equals(Instruction)
Equality of two instructions implies that they are of the same type.
 o exploration(Machine)
A hook for analyzing an instruction.
 o reset()
To reset the instruction.

Variables

 o left
  protected Instruction left
The two components, which are instructions.
 o right
  protected Instruction right
The two components, which are instructions.

Constructors

 o BinaryInstruction
  public BinaryInstruction()

Methods

 o reset
  public void reset()
To reset the instruction.
Overrides:
reset in class Instruction
 o equals
  public boolean equals(Instruction inst)
Equality of two instructions implies that they are of the same type.
Overrides:
equals in class Instruction
 o exploration
  protected boolean exploration(Machine machine)
A hook for analyzing an instruction.
Overrides:
exploration in class Instruction
 o clone
  public Object clone()
Instruction implements cloneable.
Overrides:
clone in class Instruction

All Packages  Class Hierarchy  This Package  Previous  Next  Index