00001 package de.fub.bytecode.generic; 00002 00003 /** 00004 * Get the type associated with an instruction, int for ILOAD, or the type 00005 * of the field of a PUTFIELD instruction, e.g.. 00006 * 00007 * @version $Id: TypedInstruction.java,v 1.1.1.1 2002/01/24 03:41:42 pserver Exp $ 00008 * @author <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A> 00009 */ 00010 public interface TypedInstruction { 00011 public Type getType(ConstantPoolGen cpg); 00012 }