diff options
author | chibash <chiba@javassist.org> | 2014-05-20 17:33:50 +0900 |
---|---|---|
committer | Scott Marlow <smarlow@redhat.com> | 2014-05-27 12:16:46 -0400 |
commit | a1c85182135d796b8bfb5c3adfb187c9f4e25695 (patch) | |
tree | 4dd887dc1560f87d27a04109c3998e68e3c3b274 | |
parent | 83ed0b04f114be0d4d761d0b4cca09e3d753c9a8 (diff) | |
download | javassist-a1c85182135d796b8bfb5c3adfb187c9f4e25695.tar.gz javassist-a1c85182135d796b8bfb5c3adfb187c9f4e25695.zip |
clarified the description in the 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. |