summaryrefslogtreecommitdiffstats
path: root/tutorial
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2010-05-08 16:37:26 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2010-05-08 16:37:26 +0000
commit2fe46756aae8b87c77715871ea1c72aae08ed9b2 (patch)
tree179567428c9c810a3381fa5aa19a444268ba1e22 /tutorial
parent1b5a7c430821ff67ebe5014d7c9481dde3009c50 (diff)
downloadjavassist-2fe46756aae8b87c77715871ea1c72aae08ed9b2.tar.gz
javassist-2fe46756aae8b87c77715871ea1c72aae08ed9b2.zip
added the description on ClassFileWriter.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@543 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'tutorial')
-rw-r--r--tutorial/tutorial3.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/tutorial/tutorial3.html b/tutorial/tutorial3.html
index d72a26c7..17e21410 100644
--- a/tutorial/tutorial3.html
+++ b/tutorial/tutorial3.html
@@ -38,6 +38,13 @@ knowledge of the Java bytecode and the class file format
while this level of API allows you any kind of modification
of class files.
+<p>
+If you want to just produce a simple class file,
+<code>javassist.bytecode.ClassFileWriter</code> might provide
+the best API for you. It is much faster than
+<code>javassist.bytecode.ClassFile</code> although its API
+is minimum.
+
<a name="classfile">
<h3>5.1 Obtaining a <code>ClassFile</code> object</h3>