diff options
author | chibash <chiba@javassist.org> | 2016-06-09 19:19:20 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2016-06-09 19:19:20 +0900 |
commit | dc4a4dc13a1f71c14c4b1fbd1e74061565de6d24 (patch) | |
tree | 17aebb126874eadf7e83335b63362ecf69586ec2 /src/main | |
parent | 64bde30912ec522684a564395af3b8695ef5223a (diff) | |
download | javassist-dc4a4dc13a1f71c14c4b1fbd1e74061565de6d24.tar.gz javassist-dc4a4dc13a1f71c14c4b1fbd1e74061565de6d24.zip |
updates javadoc
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/javassist/bytecode/ConstPool.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/javassist/bytecode/ConstPool.java b/src/main/javassist/bytecode/ConstPool.java index 78935160..06df1327 100644 --- a/src/main/javassist/bytecode/ConstPool.java +++ b/src/main/javassist/bytecode/ConstPool.java @@ -222,6 +222,9 @@ public final class ConstPool { /** * Returns the <code>tag</code> field of the constant pool table * entry at the given index. + * + * @return either <code>CONST_Class</code>, <code>CONST_Fieldref</code>, + * <code>CONST_Methodref</code>, or ... */ public int getTag(int index) { return getItem(index).getTag(); |