Browse Source

I will release 3.6.0.CR1


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@398 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 17 years ago
parent
commit
22cfe0c43b

+ 2
- 2
Readme.html View File

@@ -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>

+ 1
- 1
src/main/javassist/CtClass.java View File

@@ -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.

+ 4
- 4
src/main/javassist/bytecode/SignatureAttribute.java View File

@@ -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 != ' '; }


Loading…
Cancel
Save