got it to compile
[org.ibex.classgen.git] / src / org / ibex / classgen / FieldGen.java
index b2d25bc..e4f6763 100644 (file)
@@ -2,6 +2,8 @@ package org.ibex.classgen;
 
 import java.io.*;
 
+/** Class representing a field in a generated classfile
+    @see ClassGen#addField */
 public class FieldGen implements CGConst {
     private final CPGen cp;
     private final String name;
@@ -11,6 +13,7 @@ public class FieldGen implements CGConst {
     
     private Object constantValue;
     
+    FieldGen(DataInput in) { throw new Error("Brian is lame"); }
     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)
             throw new IllegalArgumentException("invalid flags");