00001 package de.fub.bytecode.generic;
00002
00003
00004
00005
00006
00007
00008
00009
00010 public class ACONST_NULL extends Instruction
00011 implements PushInstruction, TypedInstruction {
00012
00013
00014
00015 public ACONST_NULL() {
00016 super(de.fub.bytecode.Constants.ACONST_NULL, (short)1);
00017 }
00018
00019
00020
00021
00022
00023
00024
00025
00026 public void accept(Visitor v) {
00027 v.visitStackProducer(this);
00028 v.visitPushInstruction(this);
00029 v.visitTypedInstruction(this);
00030 v.visitACONST_NULL(this);
00031 }
00032
00033
00034 public Type getType(ConstantPoolGen cp) {
00035 return Type.NULL;
00036 }
00037 }