summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2007-07-27 06:48:41 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2007-07-27 06:48:41 +0000
commit22cfe0c43b2124591495e31bd119f9446e66ccf2 (patch)
tree0168e1888e4817d95e5c34f0996d76c48f64a998
parent8dac8e2ce448d7f1d79e1fe9de71b551d62b0a63 (diff)
downloadjavassist-22cfe0c43b2124591495e31bd119f9446e66ccf2.tar.gz
javassist-22cfe0c43b2124591495e31bd119f9446e66ccf2.zip
I will release 3.6.0.CR1
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@398 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
-rw-r--r--Readme.html4
-rw-r--r--src/main/javassist/CtClass.java2
-rw-r--r--src/main/javassist/bytecode/SignatureAttribute.java8
3 files changed, 7 insertions, 7 deletions
diff --git a/Readme.html b/Readme.html
index 2a20f8ad..47500892 100644
--- a/Readme.html
+++ b/Readme.html
@@ -281,7 +281,7 @@ see javassist.Dump.
<h2>Changes</h2>
-<p>-version 3.6
+<p>-version 3.6.0.CR1 on July 27, 2007
<ul>
<li>The stack map table introduced since Java 6 has been supported.
@@ -663,7 +663,7 @@ and <a href="http://www.jboss.org/index.html?module=html&op=userdisplay&id=devel
<h2>Copyright notices</h2>
<p>Javassist, a Java-bytecode translator toolkit.
-<br>Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
+<br>Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved.
<p>The contents of this software, Javassist, are subject to
the Mozilla Public License Version 1.1 (the "License");<br>
diff --git a/src/main/javassist/CtClass.java b/src/main/javassist/CtClass.java
index 7d4b962b..2cce10ff 100644
--- a/src/main/javassist/CtClass.java
+++ b/src/main/javassist/CtClass.java
@@ -52,7 +52,7 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
- public static final String version = "3.6.0beta2";
+ public static final String version = "3.6.0.CR1";
/**
* Prints the version number and the copyright notice.
diff --git a/src/main/javassist/bytecode/SignatureAttribute.java b/src/main/javassist/bytecode/SignatureAttribute.java
index b38a7ffa..2c8f0e9b 100644
--- a/src/main/javassist/bytecode/SignatureAttribute.java
+++ b/src/main/javassist/bytecode/SignatureAttribute.java
@@ -287,14 +287,14 @@ public class SignatureAttribute extends AttributeInfo {
/**
* Returns the kind of this type argument.
*
- * @return ' ' (not-wildcard), '*' (wildcard), '+' (wildcard with
- * upper bound), or '-' (wildcard with lower bound).
+ * @return <code>' '</code> (not-wildcard), <code>'*'</code> (wildcard), <code>'+'</code> (wildcard with
+ * upper bound), or <code>'-'</code> (wildcard with lower bound).
*/
public char getKind() { return wildcard; }
/**
- * Returns true if this type argument is a wildcard type such as
- * ?, ? extends String, or ? super Integer.
+ * Returns true if this type argument is a wildcard type
+ * such as <code>?</code>, <code>? extends String</code>, or <code>? super Integer</code>.
*/
public boolean isWildcard() { return wildcard != ' '; }