diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2004-07-27 14:47:30 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2004-07-27 14:47:30 +0000 |
commit | f4a78cf275e5a1a8f81fed70d73f6273f6f9150f (patch) | |
tree | 140009f9a173ac910e356f9b38d9e0f0e239f694 /tutorial/tutorial2.html | |
parent | af2793e73182bb4f61084d97a62852c6c155dac2 (diff) | |
download | javassist-f4a78cf275e5a1a8f81fed70d73f6273f6f9150f.tar.gz javassist-f4a78cf275e5a1a8f81fed70d73f6273f6f9150f.zip |
updated some javadoc comments.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@119 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'tutorial/tutorial2.html')
-rw-r--r-- | tutorial/tutorial2.html | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/tutorial/tutorial2.html b/tutorial/tutorial2.html index 8dc5f867..937c4427 100644 --- a/tutorial/tutorial2.html +++ b/tutorial/tutorial2.html @@ -18,6 +18,7 @@ <li><a href="#before">Inserting source text at the beginning/end of a method body</a> <br><li><a href="#alter">Altering a method body</a> <br><li><a href="#add">Adding a new method or field</a> +<br><li><a href="#runtime">Runtime support classes</a> <br><li><a href="#limit">Limitations</a> </ul> @@ -1269,8 +1270,22 @@ does not end with a semi colon (<code>;</code>). <p><br> +<a name="runtime"> +<h3>5.4 Runtime support classes</h3> + +<p>In most cases, a class modified by Javassist does not require +Javassist to run. However, some kinds of bytecode generated by the +Javassist compiler need runtime support classes, which are in the +<code>javassist.runtime</code> package (for details, please read +the API reference of that package). Note that the +<code>javassist.runtime</code> package is the only package that +classes modified by Javassist may need for running. The other +Javassist classes are never used at runtime of the modified classes. + +<p><br> + <a name="limit"> -<h3>5.4 Limitations</h3> +<h3>5.5 Limitations</h3> <p>In the current implementation, the Java compiler included in Javassist has several limitations with respect to the language that the compiler can |