]> source.dussan.org Git - javassist.git/commitdiff
modified javadocs.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 12 Jun 2006 18:43:54 +0000 (18:43 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 12 Jun 2006 18:43:54 +0000 (18:43 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@281 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/CtClass.java
src/main/javassist/Modifier.java
src/main/javassist/util/proxy/ProxyFactory.java

index fe592998487cffeb31cccb02b8c59d6cca3fd5b4..265e338f09d0c793ecebc31555a551202ed2b10d 100644 (file)
@@ -436,6 +436,8 @@ public abstract class CtClass {
     /**
      * Determines whether this object represents an annotation type.
      * It returns <code>true</code> if this object represents an annotation type.
+     *
+     * @since 3.2
      */
     public boolean isAnnotation() {
         return false;
@@ -444,6 +446,8 @@ public abstract class CtClass {
     /**
      * Determines whether this object represents an enum.
      * It returns <code>true</code> if this object represents an enum.
+     *
+     * @since 3.2
      */
     public boolean isEnum() {
         return false;
index 730e24b6e63fa6ebda69a6ba19e6014bc79da944..44a17633b443f608e52ec690f4ae3a428598a3e0 100644 (file)
@@ -134,6 +134,8 @@ public class Modifier {
     /**
      * Returns true if the modifiers include the <tt>annotation</tt>
      * modifier.
+     *
+     * @since 3.2
      */
     public static boolean isAnnotation(int mod) {
         return (mod & ANNOTATION) != 0;
@@ -142,6 +144,8 @@ public class Modifier {
     /**
      * Returns true if the modifiers include the <tt>enum</tt>
      * modifier.
+     *
+     * @since 3.2
      */
     public static boolean isEnum(int mod) {
         return (mod & ENUM) != 0;
index f0dd6777e80214488c9d4db52234e85be48aa6fa..9ce9f147266fea409ecfa96dc56672b783e30757 100644 (file)
@@ -47,7 +47,7 @@ import javassist.bytecode.*;
  *     public Object invoke(Object self, Method m, Method proceed,
  *                          Object[] args) throws Throwable {
  *         System.out.println("Name: " + m.getName());
- *         proceed.invoke(self, args);  // execute the original method.
+ *         return proceed.invoke(self, args);  // execute the original method.
  *     }
  * };
  * f.setHandler(mi);