00001 package de.fub.bytecode.generic; 00002 00003 /** 00004 * MONITORENTER - Enter monitor for object 00005 * <PRE>Stack: ..., objectref -> ...</PRE> 00006 * 00007 * @version $Id: MONITORENTER.java,v 1.1.1.1 2002/01/24 03:44:05 pserver Exp $ 00008 * @author <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A> 00009 */ 00010 public class MONITORENTER extends Instruction implements ExceptionThrower{ 00011 public MONITORENTER() { 00012 super(MONITORENTER, (short)1); 00013 } 00014 public Class[] getExceptions() { 00015 return new Class[] {NULL_POINTER_EXCEPTION}; 00016 } 00017 }