Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

ConversionInstruction.java

00001 package de.fub.bytecode.generic;
00002 
00003 /**
00004  * Super class for the x2y family of instructions.
00005  *
00006  * @version $Id: ConversionInstruction.java,v 1.1.1.1 2002/01/24 03:44:02 pserver Exp $
00007  * @author  <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A>
00008  */
00009 public abstract class ConversionInstruction extends Instruction {
00010   /**
00011    * Empty constructor needed for the Class.newInstance() statement in
00012    * Instruction.readInstruction(). Not to be used otherwise.
00013    */
00014   ConversionInstruction() {}  
00015   /**
00016    * @param tag opcode of instruction
00017    */
00018   protected ConversionInstruction(short tag) {
00019     super(tag, (short)1);
00020   }  
00021 }

Generated at Thu Feb 7 06:43:08 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001