00001 package de.fub.bytecode.generic; 00002 00003 import de.fub.bytecode.Constants; 00004 00005 /** 00006 * Super class for objects and arrays. 00007 * 00008 * @version $Id: ReferenceType.java,v 1.1.1.1 2002/01/24 03:41:41 pserver Exp $ 00009 * @author <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A> 00010 */ 00011 public class ReferenceType extends Type { 00012 /** Class is non-abstract but not instantiable from the outside 00013 */ 00014 ReferenceType() { 00015 super(Constants.T_OBJECT, "<null object>"); 00016 } 00017 protected ReferenceType(byte t, String s) { 00018 super(t, s); 00019 } 00020 }