]> source.dussan.org Git - javassist.git/commitdiff
added javadoc comments
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sat, 10 Mar 2007 17:01:04 +0000 (17:01 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sat, 10 Mar 2007 17:01:04 +0000 (17:01 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@358 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/bytecode/SignatureAttribute.java

index 378ebc4f2e198167420687e4747c20133335074d..9847b4eea1b0376ed86ceab587d790109ef0a296 100644 (file)
@@ -442,6 +442,9 @@ public class SignatureAttribute extends AttributeInfo {
         }
     }
 
+    /**
+     * Nested class types.
+     */
     public static class NestedClassType extends ClassType {
         ClassType parent;
         NestedClassType(String s, int b, int e,
@@ -450,6 +453,10 @@ public class SignatureAttribute extends AttributeInfo {
             parent = p;
         }
 
+        /**
+         * Returns the class that declares this nested class.
+         * This nested class is a member of that declaring class.
+         */
         public ClassType getDeclaringClass() { return parent; }
     }