diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2009-12-28 08:47:39 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2009-12-28 08:47:39 +0000 |
commit | 3a7bb50f6e34df59a5ec83a5f76b64f21c0426a2 (patch) | |
tree | 637a2455314a4137395148d4e3f000a195983f14 /src/main/javassist/CtNewConstructor.java | |
parent | 3778b48d832356929c2608d0c76f0e84dfae91ee (diff) | |
download | javassist-3a7bb50f6e34df59a5ec83a5f76b64f21c0426a2.tar.gz javassist-3a7bb50f6e34df59a5ec83a5f76b64f21c0426a2.zip |
updated doc comments for JIRA 102
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@506 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src/main/javassist/CtNewConstructor.java')
-rw-r--r-- | src/main/javassist/CtNewConstructor.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/javassist/CtNewConstructor.java b/src/main/javassist/CtNewConstructor.java index d0b82540..f510356a 100644 --- a/src/main/javassist/CtNewConstructor.java +++ b/src/main/javassist/CtNewConstructor.java @@ -108,11 +108,14 @@ public class CtNewConstructor { } /** - * Creats a copy of a constructor. + * Creates a copy of a constructor. + * This is a convenience method for calling + * {@link CtConstructor#CtConstructor(CtConstructor, CtClass, ClassMap) this constructor}. + * See the description of the constructor for particular behavior of the copying. * * @param c the copied constructor. * @param declaring the class to which the created method is added. - * @param map the hashtable associating original class names + * @param map the hash table associating original class names * with substituted names. * It can be <code>null</code>. * |