All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class BIT.highBIT.InstructionLookupswitch

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

public class InstructionLookupswitch
extends Instruction
Represents lookupswitch JVM instruction.

See Also:
Instruction

Constructor Index

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

Method Index

 o getDefault()
 o getLength()
Returns the length (in bytes) of this instruction including opcode.
 o getNpairs()
 o getOffsets()
 o setDefault(int)
 o write(DataOutputStream)

Constructors

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

Parameters:
opcode - the opcode of this instruction
iStream - the data input stream where the operands are gotten from
byte_count - represents the number of bytes read so far from the beginning of the code buffer (this is needed to compute number of pads)

Methods

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

Overrides:
getLength in class Instruction
 o getOffsets
 public int[] getOffsets()
 o getNpairs
 public int getNpairs()
 o getDefault
 public int getDefault()
 o setDefault
 public void setDefault(int def)

All Packages  Class Hierarchy  This Package  Previous  Next  Index