diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2009-03-01 01:56:58 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2009-03-01 01:56:58 +0000 |
commit | e8e335d811284d4e442d59f1d909ce3cd00ad1b5 (patch) | |
tree | a399302c8864cc6f894c364368e4d85ee6df0b24 /src/main/javassist/CtNewMethod.java | |
parent | 2ab6411a17ee9082cfb9f8fa9165a25961be7852 (diff) | |
download | javassist-e8e335d811284d4e442d59f1d909ce3cd00ad1b5.tar.gz javassist-e8e335d811284d4e442d59f1d909ce3cd00ad1b5.zip |
for preparing 3.10 release
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@466 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src/main/javassist/CtNewMethod.java')
-rw-r--r-- | src/main/javassist/CtNewMethod.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/javassist/CtNewMethod.java b/src/main/javassist/CtNewMethod.java index 2911484a..60802542 100644 --- a/src/main/javassist/CtNewMethod.java +++ b/src/main/javassist/CtNewMethod.java @@ -94,6 +94,7 @@ public class CtNewMethod { * If it is <code>null</code>, the created method * does nothing except returning zero or null. * @param declaring the class to which the created method is added. + * @see #make(int, CtClass, String, CtClass[], CtClass[], String, CtClass) */ public static CtMethod make(CtClass returnType, String mname, CtClass[] parameters, @@ -106,7 +107,8 @@ public class CtNewMethod { } /** - * Creates a method. + * Creates a method. <code>modifiers</code> can contain + * <code>Modifier.STATIC</code>. * * @param modifiers access modifiers. * @param returnType the type of the returned value. |