All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class BIT.highBIT.InstructionTripleOperand

java.lang.Object
   |
   +----BIT.highBIT.Instruction
           |
           +----BIT.highBIT.InstructionTripleOperand

public class InstructionTripleOperand
extends Instruction
Represents a Java Virtual Machine instrucion that takes three operands.

See Also:
Instruction

Constructor Index

 o InstructionTripleOperand(int, DataInputStream, int, Routine)
Constructor for InstructionTripleOperand class.

Method Index

 o getLength()
Returns the length (in bytes) of this instruction including opcode.
 o getOperand(int)
 o getOperandValue()
Returns the value of the operands.
 o write(DataOutputStream)

Constructors

 o InstructionTripleOperand
 public InstructionTripleOperand(int opcode,
                                 DataInputStream iStream,
                                 int offset,
                                 Routine routine)
Constructor for InstructionTripleOperand class.

Parameters:
opcode - the opcode of this instruction
iStream - the data input stream where the operands are gotten from

Methods

 o write
 public void write(DataOutputStream oStream)
Overrides:
write in class Instruction
 o getOperand
 public int getOperand(int i)
 o getLength
 public int getLength()
Returns the length (in bytes) of this instruction including opcode.

Overrides:
getLength in class Instruction
 o getOperandValue
 public int getOperandValue()
Returns the value of the operands.

Overrides:
getOperandValue in class Instruction

All Packages  Class Hierarchy  This Package  Previous  Next  Index