FileDocCategorySizeDatePackage
StackInstruction.javaAPI DocJava SE 5 API3400Fri Aug 26 14:55:24 BST 2005com.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.1.1 2001/10/29 20:00:27 jvanzyl 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;