diff options
author | chibash <chiba@javassist.org> | 2014-05-20 17:33:50 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2014-05-20 17:33:50 +0900 |
commit | 24dc6650e0f53372e71ac5e9ea6300c2fb7bdbc6 (patch) | |
tree | 2977444aa74aecbd0b5c68362cb62ec558acddd7 /tutorial | |
parent | 985a99244e35e8f52bff67783405d393046ee408 (diff) | |
download | javassist-24dc6650e0f53372e71ac5e9ea6300c2fb7bdbc6.tar.gz javassist-24dc6650e0f53372e71ac5e9ea6300c2fb7bdbc6.zip |
clarified the description in the tutorial.
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/tutorial2.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tutorial/tutorial2.html b/tutorial/tutorial2.html index 445fc90b..b3a61e7b 100644 --- a/tutorial/tutorial2.html +++ b/tutorial/tutorial2.html @@ -1572,6 +1572,9 @@ enclosed by braces <code>{</code> and <code>}</code>, are not available unless the array dimension is one. <p><li>Inner classes or anonymous classes are not supported. +Note that this is a limitation of the compiler only. +It cannot compile source code including an anonymous-class declaration. +Javassist can read and modify a class file of inner/anonymous class. <p><li>Labeled <code>continue</code> and <code>break</code> statements are not supported. |