]> source.dussan.org Git - javassist.git/commitdiff
final updates for 3.20.0-GA release rel_3_20_0_ga
authorchibash <chiba@javassist.org>
Wed, 24 Jun 2015 15:28:31 +0000 (00:28 +0900)
committerchibash <chiba@javassist.org>
Wed, 24 Jun 2015 15:28:31 +0000 (00:28 +0900)
Readme.html
build.xml
javassist.jar
pom.xml
src/main/META-INF/MANIFEST.MF
src/main/javassist/bytecode/ClassFile.java
src/main/javassist/tools/Callback.java

index 446edebdeaa5611cad38f6897ab0303ac28f8c67..22e5480d69654d81775ed551ec75c468c78c64a1 100644 (file)
@@ -281,7 +281,7 @@ see javassist.Dump.
 
 <h2>Changes</h2>
 
-<p>-version 3.20
+<p>-version 3.20 on June 25, 2015
 <ul>
 <li>JIRA JASSIST-241, 242, 246.
 </ul>
index 01d3fdf0fa238a4a74625203d63ef32bc1090c4b..b22829e09df3eb44e9b3649d5fad93875a3654dd 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -6,7 +6,7 @@
 
 <project name="javassist" default="jar" basedir=".">
 
-  <property name="dist-version" value="javassist-3.19.0-GA"/>
+  <property name="dist-version" value="javassist-3.20.0-GA"/>
 
   <property environment="env"/>
   <property name="target.jar" value="javassist.jar"/>
index 11b3aa975ccdf604c77de836964a1b409766bb9f..80e150021fae87c6c729b3c402a8d442075ea63b 100644 (file)
Binary files a/javassist.jar and b/javassist.jar differ
diff --git a/pom.xml b/pom.xml
index 5c4412788023f58049f9c3baef6591f3497b7cd4..164b07c026067a06b3cef3dccae60ff0ab4ec6d6 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
        Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
     simple.  It is a class library for editing bytecodes in Java.
   </description>
-  <version>3.19.0-GA</version>
+  <version>3.20.0-GA</version>
   <name>Javassist</name>
   <url>http://www.javassist.org/</url>
 
index c7bad8e9f61d673e86118256accce2f0f19684f3..28b3763b935199ce6de6e6eb19eb246e7c227982 100644 (file)
@@ -1,4 +1,4 @@
 Specification-Title: Javassist
 Specification-Vendor: Shigeru Chiba, www.javassist.org
-Specification-Version: 3.19.0-GA
+Specification-Version: 3.20.0-GA
 Main-Class: javassist.CtClass
index f27ff4d8fd9504f0d343c09711bb25d7493a30aa..9e12c08da7405fd90314ccf519140b888a097dad 100644 (file)
@@ -30,7 +30,7 @@ import javassist.CannotCompileException;
  * <code>ClassFile</code> represents a Java <code>.class</code> file, which
  * consists of a constant pool, methods, fields, and attributes.
  *
- * <p>For example,
+ * <p>For example,</p>
  * <blockquote><pre>
  * ClassFile cf = new ClassFile(false, "test.Foo", null);
  * cf.setInterfaces(new String[] { "java.lang.Cloneable" });
@@ -41,14 +41,13 @@ import javassist.CannotCompileException;
  *
  * cf.write(new DataOutputStream(new FileOutputStream("Foo.class")));
  * </pre></blockquote>
- * This code generates a class file <code>Foo.class</code> for the following class:
+ * <p>This code generates a class file <code>Foo.class</code> for the following class:</p>
  * <blockquote><pre>
  * package test;
  * class Foo implements Cloneable {
  *     public int width;
  * }
  * </pre></blockquote>
- * </p>
  *
  * @see FieldInfo
  * @see MethodInfo
index 26a4200eb8c4deddafaa90543d637a1224faa224..56c874146ac7592bbfee5953914d15955ccd6435 100644 (file)
@@ -25,26 +25,24 @@ import java.util.UUID;
 /**
  * Creates bytecode that when executed calls back to the instance's result method.
  *
- * Example of how to create and insert a callback:
- * <pre>{@code
+ * <p>Example of how to create and insert a callback:</p>
+ * <pre>
  * ctMethod.insertAfter(new Callback("Thread.currentThread()") {
- *     @literal@Override
  *     public void result(Object... objects) {
  *         Thread thread = (Thread) objects[0];
  *         // do something with thread...
  *     }
  * }.sourceCode());
- * }</pre>
- * Contains utility methods for inserts callbacks in <code>CtBehaviour</code>, example:
- * <pre>{@code
+ * </pre>
+ * <p>Contains utility methods for inserts callbacks in <code>CtBehaviour</code>, example:</p>
+ * <pre>
  * insertAfter(ctBehaviour, new Callback("Thread.currentThread(), dummyString") {
- *     @literal@Override
  *     public void result(Object... objects) {
  *         Thread thread = (Thread) objects[0];
  *         // do something with thread...
  *     }
  * });
- * }</pre>
+ * </pre>
  *
  * @author Marten Hedborg
  */