Browse Source

fixed JIRA JASSIST-19.


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@277 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 18 years ago
parent
commit
7804fb0986
2 changed files with 12 additions and 1 deletions
  1. 8
    0
      Readme.html
  2. 4
    1
      src/main/javassist/CtBehavior.java

+ 8
- 0
Readme.html View 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.

+ 4
- 1
src/main/javassist/CtBehavior.java View 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
*/

Loading…
Cancel
Save