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