diff -bB --exclude=CVS --exclude=*~ -ruP mdr/src/org/netbeans/mdr/util/ImplGenerator.java mdr-new/org/netbeans/mdr/util/ImplGenerator.java --- mdr/src/org/netbeans/mdr/util/ImplGenerator.java Thu May 2 11:25:48 2002 +++ mdr-new/org/netbeans/mdr/util/ImplGenerator.java Mon May 6 16:36:33 2002 @@ -350,7 +350,7 @@ * in the class being generated. This class mirrors the data items of * the "method_info" structure of the class file format (see JVMS 4.6). */ - final protected class MethodInfo { + final public class MethodInfo { public int accessFlags; public String name; public String descriptor; @@ -976,7 +976,7 @@ * a primitive type in its public fields. The struct for a particular * primitive type can be obtained using the static "get" method. */ - protected static class PrimitiveTypeInfo { + public static class PrimitiveTypeInfo { /** "base type" used in various descriptors (see JVMS section 4.3.2) */ public String baseTypeString; @@ -1048,7 +1048,7 @@ * See JVMS section 4.4 for more information about the constant pool * of a class file. */ - protected static class ConstantPool { + public static class ConstantPool { /** * list of constant pool entries, in constant pool index order.