[PATCH] teeny doc patch
"Dale E Martin" <[email protected]>
| Newsgroups | gmane.comp.jakarta.bcel.devel |
|---|---|
| Message-ID | <[email protected]> |
Here's another teeny documentation patch. It clarifies what appears in
JavaClass.fields.
Take care,
Dale
--
Dale E. Martin, Clifton Labs, Inc.
Senior Computer Engineer
[email protected]
http://www.cliftonlabs.com
pgp key available
--
To unsubscribe, e-mail: <mailto:[email protected]>
For additional commands, e-mail: <mailto:[email protected]>
patch
(text/plain, 876 B)
Index: src/java/org/apache/bcel/classfile/JavaClass.java
===================================================================
RCS file: /home/cvspublic/jakarta-bcel/src/java/org/apache/bcel/classfile/JavaClass.java,v
retrieving revision 1.4
diff -u -r1.4 JavaClass.java
--- src/java/org/apache/bcel/classfile/JavaClass.java 11 Mar 2002 16:16:35 -0000 1.4
+++ src/java/org/apache/bcel/classfile/JavaClass.java 20 Mar 2002 22:54:29 -0000
@@ -362,7 +362,9 @@
public ConstantPool getConstantPool() { return constant_pool; }
/**
- * @return Fields, i.e., variables of the class.
+ * @return Fields, i.e., variables of the class. Like the JVM spec
+ * mandates for the classfile format, these fields are those specific to
+ * this class, and not those of the superclass or superinterfaces.
*/
public Field[] getFields() { return fields; }
/**