[jboss-cvs] javassist/src/main/javassist/bytecode ...

Shigeru Chiba chiba at is.titech.ac.jp
Sat Mar 10 12:01:04 EST 2007


  User: chiba   
  Date: 07/03/10 12:01:04

  Modified:    src/main/javassist/bytecode  SignatureAttribute.java
  Log:
  added javadoc comments
  
  Revision  Changes    Path
  1.9       +7 -0      javassist/src/main/javassist/bytecode/SignatureAttribute.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SignatureAttribute.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/bytecode/SignatureAttribute.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- SignatureAttribute.java	8 Mar 2007 13:29:54 -0000	1.8
  +++ SignatureAttribute.java	10 Mar 2007 17:01:04 -0000	1.9
  @@ -442,6 +442,9 @@
           }
       }
   
  +    /**
  +     * Nested class types.
  +     */
       public static class NestedClassType extends ClassType {
           ClassType parent;
           NestedClassType(String s, int b, int e,
  @@ -450,6 +453,10 @@
               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; }
       }
   
  
  
  



More information about the jboss-cvs-commits mailing list