]> source.dussan.org Git - javassist.git/commitdiff
fixes typos in javadocs. rel_3_24_0_rc
authorchibash <chiba@javassist.org>
Fri, 5 Oct 2018 09:04:11 +0000 (18:04 +0900)
committerchibash <chiba@javassist.org>
Fri, 5 Oct 2018 09:04:11 +0000 (18:04 +0900)
src/main/META-INF/MANIFEST.MF
src/main/javassist/ClassPool.java
src/main/javassist/CtClass.java
src/main/javassist/Modifier.java
src/main/javassist/expr/ExprEditor.java
src/main/javassist/expr/NewArray.java
src/main/javassist/expr/NewExpr.java
src/main/javassist/util/proxy/DefineClassHelper.java
src/main/javassist/util/proxy/ProxyFactory.java

index 1d89a56a4877fac110468b95d67f3a1a73020a93..d54cb4ba8104f5ed9190c9246867b2eade3e4549 100644 (file)
@@ -1,5 +1,5 @@
 Specification-Title: Javassist
 Specification-Vendor: Shigeru Chiba, www.javassist.org
-Specification-Version: 3.24-GA
+Specification-Version: 3.24.0-RC
 Main-Class: javassist.CtClass
 Automatic-Module-Name: org.javassist
index 100afbe58460fc11717109fe49b0ad751e9e22a6..37f2acbd246826625b04f4a7204c7fac071c4d1b 100644 (file)
@@ -1038,7 +1038,7 @@ public class ClassPool {
      * work with a security manager or a signed jar file because a
      * protection domain is not specified.</p>
      *
-     * @see #toCalss(CtClass,Class)
+     * @see #toClass(CtClass,Class)
      * @see #toClass(CtClass,Class,java.lang.ClassLoader,ProtectionDomain)
      * @see #getClassLoader()
      */
@@ -1206,7 +1206,7 @@ public class ClassPool {
      *
      * <p>If your program is for only Java 9 or later, don't use this method.
      * Use {@link #toClass(CtClass,Class)} or
-     * {@link #toClass(CtClass)CtClass,java.lang.invoke.MethodHandles.Lookup)}.
+     * {@link #toClass(CtClass,java.lang.invoke.MethodHandles.Lookup)}.
      * </p>
      *
      * @param ct            the class converted into {@code java.lang.Class}.
index bb5bab6e5ca38f19ffa6ad8ffb6f26230d621b2d..8fe598d2cfaa96d01863c5d034c279b9c72a4715 100644 (file)
@@ -69,7 +69,7 @@ public abstract class CtClass {
     /**
      * The version number of this release.
      */
-    public static final String version = "3.24-GA";
+    public static final String version = "3.24.0-RC";
 
     /**
      * Prints the version number and the copyright notice.
@@ -1262,7 +1262,7 @@ public abstract class CtClass {
      * class.
      *
      * <p><b>Warning:</b> In Java 11 or later, the call to this method will
-     * print a warning message:
+     * print a warning message:</p>
      * <blockquote><pre>
      * WARNING: An illegal reflective access operation has occurred
      * WARNING: Illegal reflective access by javassist.util.proxy.SecurityActions$3 ...
@@ -1270,7 +1270,7 @@ public abstract class CtClass {
      * WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
      * WARNING: All illegal access operations will be denied in a future release
      * </pre></blockquote>
-     * To avoid this message, use {@link #toClass(Class)}
+     * <p>To avoid this message, use {@link #toClass(Class)}
      * or {@link #toClass(java.lang.invoke.MethodHandles.Lookup)}.
      * {@link #toClass()} will be unavailable in a future release.
      * </p>
@@ -1309,7 +1309,7 @@ public abstract class CtClass {
      * @param neighbor    A class belonging to the same package that this
      *                    class belongs to.  It is used to load the class.
      * @see ClassPool#toClass(CtClass,Class)
-     * @see #CtClass(java.lang.invoke.MethodHandles.Lookup)
+     * @see #toClass(java.lang.invoke.MethodHandles.Lookup)
      * @since 3.24
      */
     public Class<?> toClass(Class<?> neighbor) throws CannotCompileException
index fd73c3b37e6f2891242334ab112bd9fe55482f06..733cc67bf419d32d0820f0143ce79b06c7fe5dd2 100644 (file)
@@ -46,7 +46,7 @@ public class Modifier {
     public static final int ENUM      = AccessFlag.ENUM;
 
     /**
-     * Returns true if the modifiers include the <tt>public</tt>
+     * Returns true if the modifiers include the <code>public</code>
      * modifier.
      */
     public static boolean isPublic(int mod) {
@@ -54,7 +54,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>private</tt>
+     * Returns true if the modifiers include the <code>private</code>
      * modifier.
      */
     public static boolean isPrivate(int mod) {
@@ -62,7 +62,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>protected</tt>
+     * Returns true if the modifiers include the <code>protected</code>
      * modifier.
      */
     public static boolean isProtected(int mod) {
@@ -71,14 +71,14 @@ public class Modifier {
 
     /**
      * Returns true if the modifiers do not include either
-     * <tt>public</tt>, <tt>protected</tt>, or <tt>private</tt>.
+     * <code>public</code>, <code>protected</code>, or <code>private</code>.
      */
     public static boolean isPackage(int mod) {
         return (mod & (PUBLIC | PRIVATE | PROTECTED)) == 0;
     }
 
     /**
-     * Returns true if the modifiers include the <tt>static</tt>
+     * Returns true if the modifiers include the <code>static</code>
      * modifier.
      */
     public static boolean isStatic(int mod) {
@@ -86,7 +86,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>final</tt>
+     * Returns true if the modifiers include the <code>final</code>
      * modifier.
      */
     public static boolean isFinal(int mod) {
@@ -94,7 +94,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>synchronized</tt>
+     * Returns true if the modifiers include the <code>synchronized</code>
      * modifier.
      */
     public static boolean isSynchronized(int mod) {
@@ -102,7 +102,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>volatile</tt>
+     * Returns true if the modifiers include the <code>volatile</code>
      * modifier.
      */
     public static boolean isVolatile(int mod) {
@@ -110,7 +110,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>transient</tt>
+     * Returns true if the modifiers include the <code>transient</code>
      * modifier.
      */
     public static boolean isTransient(int mod) {
@@ -118,7 +118,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>native</tt>
+     * Returns true if the modifiers include the <code>native</code>
      * modifier.
      */
     public static boolean isNative(int mod) {
@@ -126,7 +126,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>interface</tt>
+     * Returns true if the modifiers include the <code>interface</code>
      * modifier.
      */
     public static boolean isInterface(int mod) {
@@ -134,7 +134,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>annotation</tt>
+     * Returns true if the modifiers include the <code>annotation</code>
      * modifier.
      *
      * @since 3.2
@@ -144,7 +144,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>enum</tt>
+     * Returns true if the modifiers include the <code>enum</code>
      * modifier.
      *
      * @since 3.2
@@ -154,7 +154,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>abstract</tt>
+     * Returns true if the modifiers include the <code>abstract</code>
      * modifier.
      */
     public static boolean isAbstract(int mod) {
@@ -162,7 +162,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>strictfp</tt>
+     * Returns true if the modifiers include the <code>strictfp</code>
      * modifier.
      */
     public static boolean isStrict(int mod) {
@@ -170,7 +170,7 @@ public class Modifier {
     }
 
     /**
-     * Returns true if the modifiers include the <tt>varargs</tt>
+     * Returns true if the modifiers include the <code>varargs</code>
      * (variable number of arguments) modifier.
      */
     public static boolean isVarArgs(int mod)  {
index 0b3f934e4a94f8290bd05d3688c0b04aaf325689..0f9bedce0c94c4d02fe5ea5e22ab381c52c08bca 100644 (file)
@@ -35,7 +35,7 @@ import javassist.bytecode.Opcode;
  * <p>If <code>instrument()</code> is called in
  * <code>CtMethod</code>, the method body is scanned from the beginning
  * to the end.
- * Whenever an expression, such as a method call and a <tt>new</tt>
+ * Whenever an expression, such as a method call and a <code>new</code>
  * expression (object creation),
  * is found, <code>edit()</code> is called in <code>ExprEdit</code>.
  * <code>edit()</code> can inspect and modify the given expression.
@@ -259,10 +259,10 @@ public class ExprEditor {
     }
 
     /**
-     * Edits a <tt>new</tt> expression (overridable).
+     * Edits a <code>new</code> expression (overridable).
      * The default implementation performs nothing.
      *
-     * @param e         the <tt>new</tt> expression creating an object.
+     * @param e         the <code>new</code> expression creating an object.
      */
     public void edit(NewExpr e) throws CannotCompileException {}
 
@@ -270,7 +270,7 @@ public class ExprEditor {
      * Edits an expression for array creation (overridable).
      * The default implementation performs nothing.
      *
-     * @param a         the <tt>new</tt> expression for creating an array.
+     * @param a         the <code>new</code> expression for creating an array.
      * @throws CannotCompileException
      */
     public void edit(NewArray a) throws CannotCompileException {}
index 70d74afdb73f338892232dc3a3deb6a602f24e38..df30e26f79e363939d35f0ea29746e3e6f78f080 100644 (file)
@@ -92,9 +92,9 @@ public class NewArray extends Expr {
 
     /**
      * Returns the type of array components.  If the created array is
-     * a two-dimensional array of <tt>int</tt>,
+     * a two-dimensional array of <code>int</code>,
      * the type returned by this method is
-     * not <tt>int[]</tt> but <tt>int</tt>.
+     * not <code>int[]</code> but <code>int</code>.
      */
     public CtClass getComponentType() throws NotFoundException {
         if (opcode == Opcode.NEWARRAY) {
index 6b28475b9181c7706e7f62391e892e40a6d87f73..3171fc3fe80413755a5dd96863de78f72e8dde0e 100644 (file)
@@ -38,7 +38,7 @@ import javassist.compiler.ProceedHandler;
 import javassist.compiler.ast.ASTList;
 
 /**
- * Object creation (<tt>new</tt> expression).
+ * Object creation (<code>new</code> expression).
  */
 public class NewExpr extends Expr {
     String newTypeName;
@@ -69,7 +69,7 @@ public class NewExpr extends Expr {
     } */
 
     /**
-     * Returns the method or constructor containing the <tt>new</tt>
+     * Returns the method or constructor containing the <code>new</code>
      * expression represented by this object.
      */
     @Override
@@ -77,7 +77,7 @@ public class NewExpr extends Expr {
 
     /**
      * Returns the line number of the source line containing the
-     * <tt>new</tt> expression.
+     * <code>new</code> expression.
      *
      * @return -1       if this information is not available.
      */
@@ -87,7 +87,7 @@ public class NewExpr extends Expr {
     }
 
     /**
-     * Returns the source file containing the <tt>new</tt> expression.
+     * Returns the source file containing the <code>new</code> expression.
      *
      * @return null     if this information is not available.
      */
@@ -173,7 +173,7 @@ public class NewExpr extends Expr {
     }
 
     /**
-     * Replaces the <tt>new</tt> expression with the bytecode derived from
+     * Replaces the <code>new</code> expression with the bytecode derived from
      * the given source text.
      *
      * <p>$0 is available but the value is null.
index 401fed6977e98bc4b3f5fb29a0cd9009044f8f26..96ade4aa0b64ad6a845204500f8561041ca043f5 100644 (file)
@@ -252,7 +252,7 @@ public class DefineClassHelper {
      * @param loader        the class loader.  It can be null if {@code neighbor} is not null
      *                      and the JVM is Java 11 or later.
      * @param domain        if it is null, a default domain is used.
-     * @parma bcode         the bytecode for the loaded class.
+     * @param bcode         the bytecode for the loaded class.
      * @since 3.22
      */
     public static Class<?> toClass(String className, Class<?> neighbor, ClassLoader loader,
index bc2c024f0c2a2d8b350e52bc0912bee01a1dfbeb..0c39a508ce9a88d7eb091539780769824f2e8807 100644 (file)
@@ -214,7 +214,7 @@ public class ProxyFactory {
      *
      * <p>The default value is {@code false}.</p>
      *
-     * @see DefineClassHelper#toClass(String, Class<?>, ClassLoader, ProtectionDomain, byte[])
+     * @see DefineClassHelper#toClass(String, Class, ClassLoader, ProtectionDomain, byte[])
      * @since 3.22
      */
     public static boolean onlyPublicMethods = false;