cp cleanup, setsourcefile
[org.ibex.classgen.git] / src / org / ibex / classgen / FieldGen.java
index 39e91c0..e2371d0 100644 (file)
@@ -7,7 +7,7 @@ public class FieldGen implements CGConst {
     private final String name;
     private final Type type;
     private final int flags;
-    private final AttrGen attrs;
+    private final ClassGen.AttrGen attrs;
     
     FieldGen(ClassGen owner, String name,Type type, int flags) {
         if((flags & ~(ACC_PUBLIC|ACC_PRIVATE|ACC_PROTECTED|ACC_VOLATILE|ACC_TRANSIENT|ACC_STATIC|ACC_FINAL)) != 0)
@@ -16,7 +16,7 @@ public class FieldGen implements CGConst {
         this.name = name;
         this.type = type;
         this.flags = flags;
-        this.attrs = new AttrGen(cp);
+        this.attrs = new ClassGen.AttrGen(cp);
         
         cp.addUtf8(name);
         cp.addUtf8(type.getDescriptor());