]> source.dussan.org Git - javassist.git/commitdiff
javadoc comments have been modified.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 12 Sep 2004 16:51:58 +0000 (16:51 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sun, 12 Sep 2004 16:51:58 +0000 (16:51 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@135 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

Readme.html
build.xml
src/main/javassist/CtClass.java

index 9b90986c503f83b370158bdaaeca828e0c22c8b4..5b85662fed6740657f67c780613725ef81a7ea0b 100644 (file)
@@ -255,7 +255,7 @@ see javassist.Dump.
 
 <h2>Changes</h2>
 
-<p>- version 3.0 beta 3
+<p>- version 3.0 RC1 in September 13, 2004.
 
 <ul>
   <li>CtClass.toClass() has been reimplemented.  The behavior has been
index 9d37a17120814bd2ae27bd0da413d326f8c04ef4..7cf28e6af8c81a564acec7b9c5e94bb273d08223 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.0beta2"/>
+  <property name="dist-version" value="javassist-3.0RC1"/>
 
   <property environment="env"/>
   <property name="target.jar" value="javassist.jar"/>
index fbb3569aa627571d837ba34042c3460bb2ee3480..0e435d786dbf64eadf1c97d905a54a7bcd7b739b 100644 (file)
@@ -35,7 +35,7 @@ public abstract class CtClass {
     /**
      * The version number of this release.
      */
-    public static final String version = "3.0 beta 3";
+    public static final String version = "3.0 RC1";
 
     /**
      * Prints the version number and the copyright notice.
@@ -820,7 +820,17 @@ public abstract class CtClass {
      * If that attribute is not found in the class file, this
      * method returns null.
      *
+     * <p>This is a convenient method mainly for obtaining
+     * a user-defined attribute.  For dealing with attributes, see the
+     * <code>javassist.bytecode</code> package.  For example, the following
+     * expression returns all the attributes of a class file.
+     *
+     * <ul><pre>
+     * getClassFile().getAttributes()
+     * </pre></ul>
+     *
      * @param name              attribute name
+     * @see javassist.bytecode.AttributeInfo
      */
     public byte[] getAttribute(String name) {
         return null;
@@ -835,8 +845,18 @@ public abstract class CtClass {
      * If there is already an attribute with
      * the same name, this method substitutes the new one for it.
      *
+     * <p>This is a convenient method mainly for adding
+     * a user-defined attribute.  For dealing with attributes, see the
+     * <code>javassist.bytecode</code> package.  For example, the following
+     * expression adds an attribute of a class file.
+     *
+     * <ul><pre>
+     * getClassFile().addAttribute(info)
+     * </pre></ul>
+     *
      * @param name      attribute name
      * @param data      attribute value
+     * @see javassist.bytecode.AttributeInfo
      */
     public void setAttribute(String name, byte[] data) {
         checkModify();