FileDocCategorySizeDatePackage
IfInstruction.javaAPI DocJava SE 5 API3471Fri Aug 26 14:55:22 BST 2005com.sun.org.apache.bcel.internal.generic

IfInstruction

public abstract class IfInstruction extends BranchInstruction implements StackConsumer
Super class for the IFxxx family of instructions.
version
$Id: IfInstruction.java,v 1.1.1.1 2001/10/29 20:00:18 jvanzyl Exp $
author
M. Dahm

Fields Summary
Constructors Summary
IfInstruction()
Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction(). Not to be used otherwise.

protected IfInstruction(short opcode, InstructionHandle target)

param
instruction Target instruction to branch to

    super(opcode, target);
  
Methods Summary
public abstract com.sun.org.apache.bcel.internal.generic.IfInstructionnegate()

return
negation of instruction, e.g. IFEQ.negate() == IFNE