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 }