fixed bug where ['s were getting appended instead of prepended
[org.ibex.classgen.git] / src / org / ibex / classgen / FieldRef.java
index f77ad93..b13fd4d 100644 (file)
@@ -1,6 +1,16 @@
 package org.ibex.classgen;
 
-public class FieldRef extends ClassGen.FieldMethodRef {
-    public FieldRef  (Type.Object c, ClassGen.NameAndType t) { super(c,t); }
-    public FieldRef(Type.Object c, String name, Type t) { super(c,new ClassGen.NameAndType(name,t.getDescriptor())); }
+/** This class represents Field references. It is used as an argument to the 
+GETFIELD, PUTFIELD, GETSTATIC, and PUTSTATCI bytecodes 
+@see CGConst#GETFIELD
+@see CGConst#PUTFIELD
+@see CGConst#GETSTATIC
+@see CGConst#PUTSTATIC
+*/
+public class FieldRef extends MemberRef {
+    /** Create a reference to field <i>name</i> of class <i>c</i> with the type <i>t</i>  */    
+    public final Type type;
+    public FieldRef(Type.Class c, String name, Type t) { super(c, name); this.type = t; }
+    public String getDescriptor() { return name; }
 }
+