diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2005-11-07 13:45:25 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2005-11-07 13:45:25 +0000 |
commit | d3f0404b8b1f992a62d80db13e14505b21cb2795 (patch) | |
tree | e2ddfe743ec421fdeb4e7ec5411e9f3223943e14 /src/main/javassist/CtField.java | |
parent | 7696279d0e1cbf5021ad38fb7328f223b94c1031 (diff) | |
download | javassist-d3f0404b8b1f992a62d80db13e14505b21cb2795.tar.gz javassist-d3f0404b8b1f992a62d80db13e14505b21cb2795.zip |
updated javadoc comments.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@218 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src/main/javassist/CtField.java')
-rw-r--r-- | src/main/javassist/CtField.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/javassist/CtField.java b/src/main/javassist/CtField.java index 6de62119..8b3580a2 100644 --- a/src/main/javassist/CtField.java +++ b/src/main/javassist/CtField.java @@ -251,6 +251,15 @@ public class CtField extends CtMember { } /** + * Returns the character string representing the type of the field. + * If two fields have the same type, + * <code>getSignature()</code> returns the same string. + */ + public String getSignature() { + return fieldInfo.getDescriptor(); + } + + /** * Returns the type of the field. */ public CtClass getType() throws NotFoundException { @@ -316,6 +325,10 @@ public class CtField extends CtMember { * If that attribute is not found in the class file, this * method returns null. * + * <p>Note that an attribute is a data block specified by + * the class file format. + * See {@link javassist.bytecode.AttributeInfo}. + * * @param name attribute name */ public byte[] getAttribute(String name) { @@ -329,6 +342,10 @@ public class CtField extends CtMember { /** * Adds an attribute. The attribute is saved in the class file. * + * <p>Note that an attribute is a data block specified by + * the class file format. + * See {@link javassist.bytecode.AttributeInfo}. + * * @param name attribute name * @param data attribute value */ |