FileDocCategorySizeDatePackage
ACONST_NULL.javaAPI DocJava SE 5 API3757Fri Aug 26 14:55:18 BST 2005com.sun.org.apache.bcel.internal.generic

ACONST_NULL

public class ACONST_NULL extends Instruction implements TypedInstruction, PushInstruction
ACONST_NULL - Push null reference
Stack: ... -> ..., null
version
$Id: ACONST_NULL.java,v 1.1.1.1 2001/10/29 20:00:05 jvanzyl Exp $
author
M. Dahm

Fields Summary
Constructors Summary
public ACONST_NULL()
Push null reference

    super(com.sun.org.apache.bcel.internal.Constants.ACONST_NULL, (short)1);
  
Methods Summary
public voidaccept(com.sun.org.apache.bcel.internal.generic.Visitor v)
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, i.e., the most specific visitXXX() call comes last.

param
v Visitor object

    v.visitStackProducer(this);
    v.visitPushInstruction(this);
    v.visitTypedInstruction(this);
    v.visitACONST_NULL(this);
  
public com.sun.org.apache.bcel.internal.generic.TypegetType(com.sun.org.apache.bcel.internal.generic.ConstantPoolGen cp)

return
Type.NULL

    return Type.NULL;