]> source.dussan.org Git - javassist.git/commitdiff
fixed javadoc bugs
authorchibash <chiba@javassist.org>
Wed, 7 Jan 2015 02:58:16 +0000 (11:58 +0900)
committerchibash <chiba@javassist.org>
Wed, 7 Jan 2015 02:58:16 +0000 (11:58 +0900)
javassist.jar
src/main/javassist/ClassPool.java
src/main/javassist/bytecode/stackmap/Tracer.java
src/main/javassist/bytecode/stackmap/TypedBlock.java
src/main/javassist/compiler/AccessorMaker.java
src/main/javassist/compiler/Javac.java
src/main/javassist/compiler/MemberResolver.java
src/main/javassist/compiler/ProceedHandler.java
src/main/javassist/compiler/ast/Visitor.java

index 2a640c4a480ee37dfebee7623c3f406a32ceeecd..43ca375023e939648bed15a03377119a49f509fb 100644 (file)
Binary files a/javassist.jar and b/javassist.jar differ
index f0bba3c5980ce3d4110d925ceebd9a3af53a555a..a1e46e2e94312378f1d046640205a033748c1807 100644 (file)
@@ -250,7 +250,7 @@ public class ClassPool {
      * caching of classes.
      *
      * @see #getCached(String)
-     * @see #removeCached(String,CtClass)
+     * @see #removeCached(String)
      */
     protected void cacheCtClass(String classname, CtClass c, boolean dynamic) {
         classes.put(classname, c);
@@ -517,7 +517,6 @@ public class ClassPool {
 
     /**
      * @param useCache      false if the cached CtClass must be ignored.
-     * @param searchParent  false if the parent class pool is not searched.
      * @return null     if the class could not be found.
      */
     protected synchronized CtClass get0(String classname, boolean useCache)
index 4111d58930fc4f735c3435bb10207c7bd723285e..182935e6a12c724bfbbab6e7ef6852445bf77a14 100644 (file)
@@ -104,7 +104,7 @@ public abstract class Tracer implements TypeTag {
      * @param pos           the position of LOOKUPSWITCH
      * @param code          bytecode
      * @param n             the number of case labels
-     * @param offsetPos     the position of the table of pairs of a value and a branch target.
+     * @param pairsPos      the position of the table of pairs of a value and a branch target.
      * @param defaultOffset     the offset to the default branch target.
      */
     protected void visitLookupSwitch(int pos, byte[] code, int n,
index 5ecada13ce78413e3eb2f74a4bca434ba186008a..719ad67f23b2d6d609ef77bdb331b70f22efaaa6 100644 (file)
@@ -29,7 +29,7 @@ public class TypedBlock extends BasicBlock {
      * Divides the method body into basic blocks.
      * The type information of the first block is initialized.
      *
-     * @param optmize       if it is true and the method does not include
+     * @param optimize       if it is true and the method does not include
      *                      branches, this method returns null.
      */
     public static TypedBlock[] makeBlocks(MethodInfo minfo, CodeAttribute ca,
index 2dfc53371e33d034bec30071feca67040e937bc8..05d19ed1b4c10b8cd47f1064771c27087b063f3a 100644 (file)
@@ -90,7 +90,7 @@ public class AccessorMaker {
      * @param accDesc   the descriptor of the accessor method.  The first
      *                  parameter type is <code>clazz</code>.
      *                  If the private method is static,
-     *              <code>accDesc<code> must be identical to <code>desc</code>. 
+     *              <code>accDesc</code> must be identical to <code>desc</code>. 
      *                  
      * @param orig      the method info of the private method.
      * @return
index a96c265a0647b3ea4421717125eee9c4578e21ea..f98d1d2323ab6660e1e3036e419f1633f88a5539 100644 (file)
@@ -185,8 +185,8 @@ public class Javac {
     /**
      * Compiles a method (or constructor) body.
      *
-     * @src    a single statement or a block.
-     *          If null, this method produces a body returning zero or null.
+     * @param src      a single statement or a block.
+     *              If null, this method produces a body returning zero or null.
      */
     public Bytecode compileBody(CtBehavior method, String src)
         throws CompileError
@@ -346,7 +346,7 @@ public class Javac {
      * <code>isStatic</code> must be recorded before compilation.
      * <code>maxLocals</code> is updated to include $0,...
      *
-     * @paaram use0     true if $0 is used.
+     * @param use0     true if $0 is used.
      * @param varNo     the register number of $0 (use0 is true)
      *                          or $1 (otherwise).
      * @param target    the type of $0 (it can be null if use0 is false).
index 8f7591cf6309689efff68d80e774ba29f1cd2b7c..c232ccdab07c23bd8c501108739b63dd9f0657dd 100644 (file)
@@ -299,7 +299,7 @@ public class MemberResolver implements TokenId {
     }
 
     /**
-     * @param name      a qualified class name. e.g. java.lang.String
+     * @param className      a qualified class name. e.g. java.lang.String
      */
     public CtField lookupField(String className, Symbol fieldName)
         throws CompileError
@@ -326,7 +326,7 @@ public class MemberResolver implements TokenId {
     }
 
     /**
-     * @parma classname         jvm class name.
+     * @param classname         jvm class name.
      */
     public CtClass lookupClass(int type, int dim, String classname)
         throws CompileError
index 82d014f51f7ee820badd6447ecbe15188c5c0874..1c3cd47a128f5bdf44f3d10d2d8b6e1ccbfa72f8 100644 (file)
@@ -23,7 +23,6 @@ import javassist.compiler.ast.ASTList;
  * An interface to an object for implementing $proceed().
  *
  * @see javassist.compiler.JvstCodeGen#setProceedHandler(ProceedHandler, String)
- * @see javassist.compiler.JvstCodeGen#atMethodCall(Expr)
  */
 public interface ProceedHandler {
     void doit(JvstCodeGen gen, Bytecode b, ASTList args) throws CompileError;
index fbc31ce530b87195c72a5e96d0ee135d60a11d79..b08df1b39180d03f3f0100572613f4253fbd75ab 100644 (file)
@@ -21,7 +21,7 @@ import javassist.compiler.CompileError;
 /**
  * The visitor pattern.
  *
- * @see ast.ASTree#accept(Visitor)
+ * @see ASTree#accept(Visitor)
  */
 public class Visitor {
     public void atASTList(ASTList n) throws CompileError {}