aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/tutorial3.html
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2004-08-30 17:41:36 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2004-08-30 17:41:36 +0000
commit4fda748aa5e0fcc4d0207169209062399fe2aa81 (patch)
treedf5b2135bb9176f4e36f6cfc53a6939279efa263 /tutorial/tutorial3.html
parentf39d058e65fb1a8b53a965f3ef20b38337ccfd76 (diff)
downloadjavassist-4fda748aa5e0fcc4d0207169209062399fe2aa81.tar.gz
javassist-4fda748aa5e0fcc4d0207169209062399fe2aa81.zip
discarded the last changes
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@129 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'tutorial/tutorial3.html')
-rw-r--r--tutorial/tutorial3.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/tutorial/tutorial3.html b/tutorial/tutorial3.html
index c965a64c..af0a4c1b 100644
--- a/tutorial/tutorial3.html
+++ b/tutorial/tutorial3.html
@@ -12,7 +12,7 @@
<div align="left"><a href="tutorial2.html">Previous page</a></div>
<p>
-<a href="#intro">6. Bytecode level API</a>
+<a href="#intro">5. Bytecode level API</a>
<ul>
<li><a href="#classfile">Obtaining a <code>ClassFile</code> object</a>
<br><li><a href="#member">Adding and removing a member</a>
@@ -25,7 +25,7 @@
<p><br>
<a name="intro">
-<h2>6. Bytecode level API</h2>
+<h2>5. Bytecode level API</h2>
<p>
Javassist also provides lower-level API for directly editing
@@ -35,7 +35,7 @@ while this level of API allows you any kind of modification
of class files.
<a name="classfile">
-<h3>6.1 Obtaining a <code>ClassFile</code> object</h3>
+<h3>5.1 Obtaining a <code>ClassFile</code> object</h3>
<p>A <code>javassist.bytecode.ClassFile</code> object represents
a class file. To obtian this object, <code>getClassFile()</code>
@@ -64,7 +64,7 @@ writes the contents of the class file to a given
<p><br>
<a name="member">
-<h3>6.2 Adding and removing a member</h3>
+<h3>5.2 Adding and removing a member</h3>
<p>
<code>ClassFile</code> provides <code>addField()</code> and
@@ -98,7 +98,7 @@ and remove one from the list.
<p><br>
<a name="traverse">
-<h3>6.3 Traversing a method body</h3>
+<h3>5.3 Traversing a method body</h3>
<p>
To examine every bytecode instruction in a method body,
@@ -143,7 +143,7 @@ Branch offsets etc. are automatically adjusted.<br>
<p><br>
<a name="bytecode">
-<h3>6.4 Producing a bytecode sequence</h3>
+<h3>5.4 Producing a bytecode sequence</h3>
<p>
A <code>Bytecode</code> object represents a sequence of bytecode