1 17 package org.apache.bcel.generic; 18 19 26 public class ACONST_NULL extends Instruction implements PushInstruction, TypedInstruction { 27 28 31 public ACONST_NULL() { 32 super(org.apache.bcel.Constants.ACONST_NULL, (short) 1); 33 } 34 35 36 38 public Type getType( ConstantPoolGen cp ) { 39 return Type.NULL; 40 } 41 42 43 51 public void accept( Visitor v ) { 52 v.visitStackProducer(this); 53 v.visitPushInstruction(this); 54 v.visitTypedInstruction(this); 55 v.visitACONST_NULL(this); 56 } 57 } 58 | Popular Tags |