diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2003-09-04 17:18:51 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2003-09-04 17:18:51 +0000 |
commit | 8443351108b18b5dd7f3ae49befe810172866ff0 (patch) | |
tree | 9bbe6799acd9a19b635dc2035351a169aa825601 /tutorial/tutorial2.html | |
parent | 2992b5313bc4eef0fe1b5838620456f9df927eae (diff) | |
download | javassist-8443351108b18b5dd7f3ae49befe810172866ff0.tar.gz javassist-8443351108b18b5dd7f3ae49befe810172866ff0.zip |
updated documents.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@43 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'tutorial/tutorial2.html')
-rw-r--r-- | tutorial/tutorial2.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tutorial/tutorial2.html b/tutorial/tutorial2.html index 13574c96..9655844e 100644 --- a/tutorial/tutorial2.html +++ b/tutorial/tutorial2.html @@ -89,6 +89,16 @@ machine specification. The users must have the knowledge about class files and bytecode. For more details, the users should see the <code>javassist.bytecode</code> package. +<p>The class files modified by Javassist requires the +<code>javassist.runtime</code> package for runtime support +only if some special identifiers starting with <code>$</code> +are used. Those special identifiers are described below. +The class files modified without those special identifiers +do not need the <code>javassist.runtime</code> package or any +other Javassist packages at runtime. +For more details, see the API documentation +of the <code>javassist.runtime</code> package. + <p><br> <h3>5.1 Inserting source text at the beginning/end of a method body</h3> |