jellyj.classfile.classgen
Class IFGT

jellyj.classfile.classgen.Instruction
  |
  +--jellyj.classfile.classgen.BranchInstruction
        |
        +--jellyj.classfile.classgen.IFGT

public class IFGT
extends BranchInstruction

IFGT - Branch if int comparison with zero succeeds Stack: ..., value1, value2 -> ...

Author:
JellyJ Design Group

Constructor Summary
 (package private) IFGT()
          Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction().
 IFGT(InstructionHandle target)
           

Methods inherited from class jellyj.classfile.classgen.BranchInstruction
dump, getIndex, getTarget, setTarget, toString

Methods inherited from class jellyj.classfile.classgen.Instruction
consumeStack, copy, getLength, getPosition, getTag, produceStack, readInstruction, setPosition

Constructor Detail

IFGT

IFGT()
Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction(). Not to be used otherwise.

IFGT

public IFGT(InstructionHandle target)