diff options
author | chibash <chiba@javassist.org> | 2014-06-16 12:52:31 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2014-06-16 12:52:31 +0900 |
commit | ae7b93b7b7466616ad3b8f4313c27271dc2ee38d (patch) | |
tree | c004d38016eda0e818d11779167f0b81181c6fe3 /tutorial/tutorial2.html | |
parent | d021437f42d1ff2841564eca1f4bd685b704c81a (diff) | |
download | javassist-ae7b93b7b7466616ad3b8f4313c27271dc2ee38d.tar.gz javassist-ae7b93b7b7466616ad3b8f4313c27271dc2ee38d.zip |
updated the tutorial for JASSIST-225
Diffstat (limited to 'tutorial/tutorial2.html')
-rw-r--r-- | tutorial/tutorial2.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tutorial/tutorial2.html b/tutorial/tutorial2.html index b3a61e7b..f2571c8b 100644 --- a/tutorial/tutorial2.html +++ b/tutorial/tutorial2.html @@ -1563,9 +1563,12 @@ has several limitations with respect to the language that the compiler can accept. Those limitations are: <p><li>The new syntax introduced by J2SE 5.0 (including enums and generics) -has not been supported. Annotations are supported only by the low level +has not been supported. Annotations are supported by the low level API of Javassist. -See the <code>javassist.bytecode.annotation</code> package. +See the <code>javassist.bytecode.annotation</code> package +(and also <code>getAnnotations()</code> +in <code>CtClass</code> and <code>CtBehavior</code>). +Generics are also only partly supported. See <a href="./tutorial3.html#generics">the latter section</a> for more details. <p><li>Array initializers, a comma-separated list of expressions enclosed by braces <code>{</code> and <code>}</code>, are not @@ -1625,6 +1628,6 @@ write: <hr> Java(TM) is a trademark of Sun Microsystems, Inc.<br> -Copyright (C) 2000-2010 by Shigeru Chiba, All rights reserved. +Copyright (C) 2000-2014 by Shigeru Chiba, All rights reserved. </body> </html> |