FileDocCategorySizeDatePackage
IfInstruction.javaAPI DocJava SE 6 API3474Tue Jun 10 00:22:20 BST 2008com.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.2.1 2005/07/31 23:46:04 jeffsuttor 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