1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public class ACONST_NULL extends Instruction 65 implements PushInstruction, TypedInstruction { 66 69 public ACONST_NULL() { 70 super(com.sun.org.apache.bcel.internal.Constants.ACONST_NULL, (short)1); 71 } 72 73 75 public Type getType(ConstantPoolGen cp) { 76 return Type.NULL; 77 } 78 79 80 88 public void accept(Visitor v) { 89 v.visitStackProducer(this); 90 v.visitPushInstruction(this); 91 v.visitTypedInstruction(this); 92 v.visitACONST_NULL(this); 93 } 94 } 95 | Popular Tags |