Browse Source

updated javadoc comments


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@207 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 18 years ago
parent
commit
39b350bc4b

+ 8
- 1
Readme.html View File

@@ -282,6 +282,13 @@ see javassist.Dump.

<h2>Changes</h2>

<p>- version 3.1 RC2 in September 7, 2005

<ul>
<li>RC2 is released mainly for an administrative reason.
<li>A few bugs have been fixed.
</ul>

<p>- version 3.1 RC1 in August 29, 2005

<ul>
@@ -618,7 +625,7 @@ Howard Lewis Ship, Richard Jones, Marjan Sterjev,
Bruce McDonald, Mark Brennan, Vlad Skarzhevskyy,
Brett Randall, Tsuyoshi Murakami, Nathan Meyers, Yoshiyuki Usui
Yutaka Sunaga, Arjan van der Meer, Bruce Eckel, Guillaume Pothier,
and Kumar Matcha for their contributions.
Kumar Matcha, and all other contributors for their contributions.

<p><br>


+ 1
- 0
src/main/javassist/CtBehavior.java View File

@@ -101,6 +101,7 @@ public abstract class CtBehavior extends CtMember {
*
* @return an array of annotation-type objects.
* @see CtMember#getAnnotations()
* @since 3.1
*/
public Object[] getAnnotations() throws ClassNotFoundException {
MethodInfo mi = getMethodInfo2();

+ 1
- 0
src/main/javassist/CtClass.java View File

@@ -451,6 +451,7 @@ public abstract class CtClass {
* the <code>Author</code> object.
*
* @return an array of annotation-type objects.
* @since 3.1
*/
public Object[] getAnnotations() throws ClassNotFoundException {
return new Object[0];

+ 1
- 0
src/main/javassist/CtField.java View File

@@ -238,6 +238,7 @@ public class CtField extends CtMember {
*
* @return an array of annotation-type objects.
* @see CtMember#getAnnotations()
* @since 3.1
*/
public Object[] getAnnotations() throws ClassNotFoundException {
FieldInfo fi = getFieldInfo2();

Loading…
Cancel
Save