]> source.dussan.org Git - javassist.git/commitdiff
fixed JIRA JASSIST-19.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 29 May 2006 09:41:55 +0000 (09:41 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 29 May 2006 09:41:55 +0000 (09:41 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@277 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

Readme.html
src/main/javassist/CtBehavior.java

index 78036246c4eef2c3dd5d1a6f86d78ce62e89805b..1a0433aaf9127f18e112413ad1dd28c746c59798 100644 (file)
@@ -281,6 +281,14 @@ see javassist.Dump.
 
 <h2>Changes</h2>
 
+<p>-version 3.2
+
+<ul>
+       <li>The behavior of CtBehavior#getParameterAnnotations() has been changed.
+       It is now compatible to Java Reflection API
+       (<a href="http://jira.jboss.com/jira/browse/JASSIST-19">JASSIST-19</a>).
+</ul>
+
 <p>- version 3.2.0.CR2 on May 9, 2006
 <ul>
    <li>A bug of replace(String,ExprEditor) in javassist.expr.Expr has been fixed.
index 10dda556482bf77855907d64b8aac3732c01bf73..4f2de78aedae08e3c2e06f9d4a06de96f58b06e1 100644 (file)
@@ -155,7 +155,10 @@ public abstract class CtBehavior extends CtMember {
     /**
      * Returns the parameter annotations associated with this method or constructor.
      *
-     * @return an array of annotation-type objects.
+     * @return an array of annotation-type objects.  The length of the returned array is
+     * equal to the number of the formal parameters.  If each parameter has no
+     * annotation, the elements of the returned array are empty arrays.
+     *
      * @see CtMember#getAnnotations()
      * @since 3.1
      */