]> source.dussan.org Git - javassist.git/commitdiff
Modified javadoc comments.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Wed, 17 Aug 2005 17:39:39 +0000 (17:39 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Wed, 17 Aug 2005 17:39:39 +0000 (17:39 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@194 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/CtBehavior.java

index 7bde7ae6ef7e24bd2cd924e9f771a0c3461e389f..791457c4dbc507d817c82b55e46ac8e0797732ef 100644 (file)
@@ -305,6 +305,10 @@ public abstract class CtBehavior extends CtMember {
      * The declared variable can be accessed in the code snippet inserted
      * by <code>insertBefore()</code>, <code>insertAfter()</code>, etc.
      *
+     * <p>If the second parameter <code>asFinally</code> to
+     * <code>insertAfter()</code> is true, the declared local variable
+     * is not visible from the code inserted by <code>insertAfter()</code>.
+     *
      * @param name      the name of the variable
      * @param type      the type of the variable
      * @see #insertBefore(String)
@@ -440,6 +444,8 @@ public abstract class CtBehavior extends CtMember {
      * @param asFinally         true if the inserted bytecode is executed
      *                  not only when the control normally returns
      *                  but also when an exception is thrown.
+     *                  If this parameter is true, the inserted code cannot
+     *                  access local variables.
      */
     public void insertAfter(String src, boolean asFinally)
         throws CannotCompileException