aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/javassist/CtClass.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/javassist/CtClass.java')
-rw-r--r--src/main/javassist/CtClass.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/main/javassist/CtClass.java b/src/main/javassist/CtClass.java
index 79d7efcb..251cd10f 100644
--- a/src/main/javassist/CtClass.java
+++ b/src/main/javassist/CtClass.java
@@ -69,18 +69,18 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
- public static final String version = "3.18.0-GA";
+ public static final String version = "3.19.0-GA";
/**
* Prints the version number and the copyright notice.
*
* <p>The following command invokes this method:
*
- * <ul><pre>java -jar javassist.jar</pre></ul>
+ * <pre>java -jar javassist.jar</pre>
*/
public static void main(String[] args) {
System.out.println("Javassist version " + CtClass.version);
- System.out.println("Copyright (C) 1999-2013 Shigeru Chiba."
+ System.out.println("Copyright (C) 1999-2015 Shigeru Chiba."
+ " All Rights Reserved.");
}
@@ -415,7 +415,7 @@ public abstract class CtClass {
*
* <p>For example,
*
- * <pre>class List<T> {
+ * <pre>class List&lt;T&gt; {
* T value;
* T get() { return value; }
* void set(T v) { value = v; }
@@ -1095,11 +1095,11 @@ public abstract class CtClass {
* Any regular Java expression can be used for specifying the initial
* value. The followings are examples.
*
- * <ul><pre>
+ * <pre>
* cc.addField(f, "0") // the initial value is 0.
* cc.addField(f, "i + 1") // i + 1.
* cc.addField(f, "new Point()"); // a Point object.
- * </pre></ul>
+ * </pre>
*
* <p>Here, the type of variable <code>cc</code> is <code>CtClass</code>.
* The type of <code>f</code> is <code>CtField</code>.
@@ -1129,11 +1129,11 @@ public abstract class CtClass {
*
* <p>For example,
*
- * <ul><pre>
+ * <pre>
* CtClass cc = ...;
* addField(new CtField(CtClass.intType, "i", cc),
* CtField.Initializer.constant(1));
- * </pre></ul>
+ * </pre>
*
* <p>This code adds an <code>int</code> field named "i". The
* initial value of this field is 1.
@@ -1168,9 +1168,9 @@ public abstract class CtClass {
* <code>javassist.bytecode</code> package. For example, the following
* expression returns all the attributes of a class file.
*
- * <ul><pre>
+ * <pre>
* getClassFile().getAttributes()
- * </pre></ul>
+ * </pre>
*
* @param name attribute name
* @see javassist.bytecode.AttributeInfo
@@ -1193,9 +1193,9 @@ public abstract class CtClass {
* <code>javassist.bytecode</code> package. For example, the following
* expression adds an attribute <code>info</code> to a class file.
*
- * <ul><pre>
+ * <pre>
* getClassFile().addAttribute(info)
- * </pre></ul>
+ * </pre>
*
* @param name attribute name
* @param data attribute value