00001 package de.fub.bytecode.generic; 00002 00003 /** 00004 * ACONST_NULL - Push null 00005 * <PRE>Stack: ... -> ..., null</PRE> 00006 * 00007 * @version $Id: ACONST_NULL.java,v 1.1.1.1 2002/01/24 03:44:03 pserver Exp $ 00008 * @author <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A> 00009 */ 00010 public class ACONST_NULL extends Instruction implements PushInstruction { 00011 public ACONST_NULL() { 00012 super(ACONST_NULL, (short)1); 00013 } 00014 }