[jboss-cvs] javassist SVN: r528 - in trunk: src/main/META-INF and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Apr 14 00:47:01 EDT 2010


Author: chiba
Date: 2010-04-14 00:47:00 -0400 (Wed, 14 Apr 2010)
New Revision: 528

Modified:
   trunk/License.html
   trunk/Readme.html
   trunk/src/main/META-INF/MANIFEST.MF
   trunk/src/main/javassist/CtClass.java
   trunk/src/main/javassist/util/proxy/ProxyObjectInputStream.java
   trunk/src/main/javassist/util/proxy/ProxyObjectOutputStream.java
Log:
preparation for GA release

Modified: trunk/License.html
===================================================================
--- trunk/License.html	2010-04-13 09:00:47 UTC (rev 527)
+++ trunk/License.html	2010-04-14 04:47:00 UTC (rev 528)
@@ -353,7 +353,7 @@
   <P>The Original Code is Javassist. 
   <P>The Initial Developer of the Original Code is Shigeru Chiba. 
   Portions created by the Initial Developer are<BR>&nbsp;
-  Copyright (C) 1999-2009 Shigeru Chiba. All Rights Reserved. 
+  Copyright (C) 1999-2010 Shigeru Chiba. All Rights Reserved. 
   <P>Contributor(s): ______________________________________. 
 
   <P>Alternatively, the contents of this file may be used under the terms of

Modified: trunk/Readme.html
===================================================================
--- trunk/Readme.html	2010-04-13 09:00:47 UTC (rev 527)
+++ trunk/Readme.html	2010-04-14 04:47:00 UTC (rev 528)
@@ -7,7 +7,7 @@
 
 <h1>Javassist version 3</h1>
 
-<h3>Copyright (C) 1999-2009 by Shigeru Chiba, All rights reserved.</h3>
+<h3>Copyright (C) 1999-2010 by Shigeru Chiba, All rights reserved.</h3>
 
 <p><br></p>
 

Modified: trunk/src/main/META-INF/MANIFEST.MF
===================================================================
--- trunk/src/main/META-INF/MANIFEST.MF	2010-04-13 09:00:47 UTC (rev 527)
+++ trunk/src/main/META-INF/MANIFEST.MF	2010-04-14 04:47:00 UTC (rev 528)
@@ -2,7 +2,7 @@
 Specification-Title: Javassist
 Created-By: Shigeru Chiba, Tokyo Institute of Technology
 Specification-Vendor: Shigeru Chiba, Tokyo Institute of Technology
-Specification-Version: 3.11.0.GA
+Specification-Version: 3.12.0.GA
 Main-Class: javassist.CtClass
 
 Name: javassist/

Modified: trunk/src/main/javassist/CtClass.java
===================================================================
--- trunk/src/main/javassist/CtClass.java	2010-04-13 09:00:47 UTC (rev 527)
+++ trunk/src/main/javassist/CtClass.java	2010-04-14 04:47:00 UTC (rev 528)
@@ -52,7 +52,7 @@
     /**
      * The version number of this release.
      */
-    public static final String version = "3.11.0.GA";
+    public static final String version = "3.12.0-SNAPSHOT";
 
     /**
      * Prints the version number and the copyright notice.

Modified: trunk/src/main/javassist/util/proxy/ProxyObjectInputStream.java
===================================================================
--- trunk/src/main/javassist/util/proxy/ProxyObjectInputStream.java	2010-04-13 09:00:47 UTC (rev 527)
+++ trunk/src/main/javassist/util/proxy/ProxyObjectInputStream.java	2010-04-14 04:47:00 UTC (rev 528)
@@ -1,3 +1,18 @@
+/*
+ * Javassist, a Java-bytecode translator toolkit.
+ * Copyright (C) 1999-2010 Shigeru Chiba. All Rights Reserved.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License.  Alternatively, the contents of this file may be used under
+ * the terms of the GNU Lesser General Public License Version 2.1 or later.
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ */
+
 package javassist.util.proxy;
 
 import java.io.IOException;
@@ -9,6 +24,8 @@
  * An input stream class which knows how to deserialize proxies created via {@link ProxyFactory} and
  * serializedo via a {@link ProxyObjectOutputStream}. It must be used when deserialising proxies created
  * from a proxy factory configured with {@link ProxyFactory#useWriteReplace} set to false.
+ *
+ * @author Andrew Dinn
  */
 public class ProxyObjectInputStream extends ObjectInputStream
 {

Modified: trunk/src/main/javassist/util/proxy/ProxyObjectOutputStream.java
===================================================================
--- trunk/src/main/javassist/util/proxy/ProxyObjectOutputStream.java	2010-04-13 09:00:47 UTC (rev 527)
+++ trunk/src/main/javassist/util/proxy/ProxyObjectOutputStream.java	2010-04-14 04:47:00 UTC (rev 528)
@@ -1,3 +1,18 @@
+/*
+ * Javassist, a Java-bytecode translator toolkit.
+ * Copyright (C) 1999-2010 Shigeru Chiba. All Rights Reserved.
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License.  Alternatively, the contents of this file may be used under
+ * the terms of the GNU Lesser General Public License Version 2.1 or later.
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ */
+
 package javassist.util.proxy;
 
 import java.io.IOException;
@@ -10,6 +25,8 @@
  * be used when serialising proxies created from a proxy factory configured with
  * {@link ProxyFactory#useWriteReplace} set to false. Subsequent deserialization of the serialized data
  * must employ a {@link ProxyObjectInputStream}
+ *
+ * @author Andrew Dinn
  */
 public class ProxyObjectOutputStream extends ObjectOutputStream
 {




More information about the jboss-cvs-commits mailing list