diff options
author | chibash <chiba@javassist.org> | 2015-02-04 12:26:50 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2015-02-04 12:26:50 +0900 |
commit | e724bc8af9362198b2e7ba05843d7e9c76a28eff (patch) | |
tree | aed9732048dd7b6f4a01a398d44511279de5aba4 /src | |
parent | c43f4a7cde41d04095feb027f33f3ab4da7248bd (diff) | |
download | javassist-e724bc8af9362198b2e7ba05843d7e9c76a28eff.tar.gz javassist-e724bc8af9362198b2e7ba05843d7e9c76a28eff.zip |
updated the tutorial and some javadoc comments
Diffstat (limited to 'src')
-rw-r--r-- | src/main/javassist/CtClass.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/javassist/CtClass.java b/src/main/javassist/CtClass.java index fc828847..0fca3ff7 100644 --- a/src/main/javassist/CtClass.java +++ b/src/main/javassist/CtClass.java @@ -463,6 +463,11 @@ public abstract class CtClass { * and the methods so that the type variable <code>T</code> can be * accessible through reflection. * + * <p><code>MethodSignature</code> is a utility class. You can directly + * pass the signature string to the <code>setGenericSignature</code> method. + * For the specification of the signatures, see Section 4.7.9.1 <i>Signatures</i> + * of The Java Virtual Machine Specification (Java SE 8). + * * @param sig a generic signature. * @see javassist.bytecode.SignatureAttribute.ClassSignature#encode() * @see javassist.bytecode.SignatureAttribute.MethodSignature#encode() |