FileDocCategorySizeDatePackage
StackInstruction.javaAPI DocJava SE 6 API3403Tue Jun 10 00:22:22 BST 2008com.sun.org.apache.bcel.internal.generic

StackInstruction

public abstract class StackInstruction extends Instruction
Super class for stack operations like DUP and POP.
version
$Id: StackInstruction.java,v 1.1.2.1 2005/07/31 23:45:17 jeffsuttor Exp $
author
M. Dahm

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

protected StackInstruction(short opcode)

param
opcode instruction opcode

    super(opcode, (short)1);
  
Methods Summary
public com.sun.org.apache.bcel.internal.generic.TypegetType(com.sun.org.apache.bcel.internal.generic.ConstantPoolGen cp)

return
Type.UNKNOWN

    return Type.UNKNOWN;