]> source.dussan.org Git - javassist.git/commitdiff
updated doc comments for JIRA 102
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 28 Dec 2009 08:47:39 +0000 (08:47 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Mon, 28 Dec 2009 08:47:39 +0000 (08:47 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@506 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/CtNewConstructor.java
src/main/javassist/CtNewMethod.java

index d0b825407b532c7ac73d711138426906a4b672be..f510356a504aa5cb4e7364916f4eca2a9625a820 100644 (file)
@@ -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>.
      *
index 608025424266421fdf5365e28fdbaaaa5ebef2dd..ec2a5faf386a281d2a4ba7112d07187f8e1234a9 100644 (file)
@@ -145,10 +145,13 @@ public class CtNewMethod {
     /**
      * Creates a copy of a method.  This method is provided for creating
      * a new method based on an existing method.
+     * This is a convenience method for calling
+     * {@link CtMethod#CtMethod(CtMethod, CtClass, ClassMap) this constructor}.
+     * See the description of the constructor for particular behavior of the copying.
      *
      * @param src       the source method.
      * @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>.
      *
@@ -163,11 +166,14 @@ public class CtNewMethod {
      * Creates a copy of a method with a new name.
      * This method is provided for creating
      * a new method based on an existing method.
+     * This is a convenience method for calling
+     * {@link CtMethod#CtMethod(CtMethod, CtClass, ClassMap) this constructor}.
+     * See the description of the constructor for particular behavior of the copying.
      *
      * @param src       the source method.
      * @param name      the name of the created method.
      * @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>.
      *