Ver código fonte

for 3.7.0.GA release


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@418 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 16 anos atrás
pai
commit
2db5ca38f3
4 arquivos alterados com 11 adições e 8 exclusões
  1. 2
    2
      License.html
  2. 5
    2
      Readme.html
  3. 2
    2
      build.xml
  4. 2
    2
      src/main/javassist/CtClass.java

+ 2
- 2
License.html Ver arquivo

@@ -337,7 +337,7 @@ MISCELLANEOUS.</B>
basis. Nothing herein is intended or shall be deemed to constitute any
admission of liability.</UL><B>13. MULTIPLE-LICENSED CODE.</B>
<UL>Initial Developer may designate portions of the Covered Code as
“Multiple-Licensed?.&nbsp; “Multiple-Licensed? means that the Initial
�Multiple-Licensed?.&nbsp; �Multiple-Licensed? means that the Initial
Developer permits you to utilize portions of the Covered Code under Your
choice of the MPL or the alternative licenses, if any, specified by the
Initial Developer in the file described in Exhibit A.</UL>
@@ -353,7 +353,7 @@ MISCELLANEOUS.</B>
<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-2007 Shigeru Chiba. All Rights Reserved.
Copyright (C) 1999-2008 Shigeru Chiba. All Rights Reserved.
<P>Contributor(s): ______________________________________.

<P>Alternatively, the contents of this file may be used under the terms of

+ 5
- 2
Readme.html Ver arquivo

@@ -7,7 +7,7 @@

<h1>Javassist version 3</h1>

<h3>Copyright (C) 1999-2007 by Shigeru Chiba, All rights reserved.</h3>
<h3>Copyright (C) 1999-2008 by Shigeru Chiba, All rights reserved.</h3>

<p><br></p>

@@ -281,7 +281,10 @@ see javassist.Dump.

<h2>Changes</h2>

<p>-version 3.7
<p>-version 3.7 on January 20, 2008
<ul>
<li>Several minor bugs have been fixed.
</ul>

<p>-version 3.6.0 on September 13, 2007


+ 2
- 2
build.xml Ver arquivo

@@ -6,7 +6,7 @@

<project name="javassist" default="jar" basedir=".">

<property name="dist-version" value="javassist-3.6"/>
<property name="dist-version" value="javassist-3.7"/>

<property environment="env"/>
<property name="target.jar" value="javassist.jar"/>
@@ -127,7 +127,7 @@ to ${build.classes.dir}.</echo>
windowtitle="Javassist API">
<doctitle><![CDATA[<h1>Javassist</h1>]]></doctitle>
<bottom><![CDATA[<i>Javassist, a Java-bytecode translator toolkit.<br>
Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
Copyright (C) 1999-2008 Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
</javadoc>
</target>


+ 2
- 2
src/main/javassist/CtClass.java Ver arquivo

@@ -52,7 +52,7 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
public static final String version = "3.7.0.beta";
public static final String version = "3.7.0.GA";

/**
* Prints the version number and the copyright notice.
@@ -63,7 +63,7 @@ public abstract class CtClass {
*/
public static void main(String[] args) {
System.out.println("Javassist version " + CtClass.version);
System.out.println("Copyright (C) 1999-2007 Shigeru Chiba."
System.out.println("Copyright (C) 1999-2008 Shigeru Chiba."
+ " All Rights Reserved.");
}


Carregando…
Cancelar
Salvar