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

Shigeru Chiba chiba at is.titech.ac.jp
Wed Feb 14 06:24:46 EST 2007


  User: chiba   
  Date: 07/02/14 06:24:46

  Modified:    src/main/javassist/bytecode  LocalVariableAttribute.java
  Log:
  javadoc updates
  
  Revision  Changes    Path
  1.9       +6 -1      javassist/src/main/javassist/bytecode/LocalVariableAttribute.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LocalVariableAttribute.java
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/src/main/javassist/bytecode/LocalVariableAttribute.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- LocalVariableAttribute.java	11 Jan 2006 06:45:56 -0000	1.8
  +++ LocalVariableAttribute.java	14 Feb 2007 11:24:46 -0000	1.9
  @@ -184,6 +184,7 @@
        * 
        * @param i         the i-th entry.
        * @see #descriptorIndex(int)
  +     * @see SignatureAttribute#toFieldSignature(String)
        */
       public int signatureIndex(int i) {
           return descriptorIndex(i);
  @@ -209,8 +210,12 @@
        * this method should be used instead of <code>descriptor()</code>
        * since the method name is more appropriate.
        * 
  +     * <p>To parse the string, call <code>toFieldSignature(String)</code>
  +     * in <code>SignatureAttribute</code>.
  +     *
        * @param i         the i-th entry.
        * @see #descriptor(int)
  +     * @see SignatureAttribute#toFieldSignature(String)
        */
       public String signature(int i) {
           return descriptor(i);
  
  
  



More information about the jboss-cvs-commits mailing list