jellyj.classfile.classgen
Class IFNULL

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

public class IFNULL
extends BranchInstruction

IFNULL - Branch if reference is not null Stack: ..., reference -> ...

Author:
JellyJ Design Group

Constructor Summary
 (package private) IFNULL()
          Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction().
 IFNULL(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

IFNULL

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

IFNULL

public IFNULL(InstructionHandle target)