introduced Type.Ref as common superclass of Type.Class and Type.Array
[org.ibex.classgen.git] / src / org / ibex / classgen / FieldRef.java
index f77ad93..9a4b790 100644 (file)
@@ -1,6 +1,17 @@
 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 ClassGen.FieldOrMethodRef {
+    /** Create a reference to field <i>name</i> of class <i>c</i> with the type <i>t</i>  */    
+    public FieldRef(Type.Class c, String name, Type t) { super(c, name, t.getDescriptor()); }
+    /** Equivalent to FieldRef(new Type.Class(s), ...)
+        @see #FieldRef(Type.Class, String, Type, )
+    */
+    public FieldRef(String s, String name, Type t) { this(Type.fromDescriptor(s).asClass(), name, t); }
 }