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

ReferenceType.java

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 }

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