Browse Source

Fix typos.

tags/rel_3_19_0_ga
Greg 10 years ago
parent
commit
749abfe3b0
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      tutorial/tutorial.html

+ 2
- 2
tutorial/tutorial.html View File

Java bytecode is stored in a binary file called a class file. Java bytecode is stored in a binary file called a class file.
Each class file contains one Java class or interface. Each class file contains one Java class or interface.


<p>The class <code>Javassist.CtClass</code> is an absatract
<p>The class <code>Javassist.CtClass</code> is an abstract
representation of a class file. A <code>CtClass</code> (compile-time representation of a class file. A <code>CtClass</code> (compile-time
class) object is a handle for dealing with a class file. The class) object is a handle for dealing with a class file. The
following program is a very simple example: following program is a very simple example:
<code>test.Rectangle</code> is obtained from the <code>test.Rectangle</code> is obtained from the
<code>ClassPool</code> object and it is assigned to a variable <code>ClassPool</code> object and it is assigned to a variable
<code>cc</code>. <code>cc</code>.
The <code>ClassPool</code> object returned by <code>getDfault()</code>
The <code>ClassPool</code> object returned by <code>getDefault()</code>
searches the default system search path. searches the default system search path.


<p>From the implementation viewpoint, <code>ClassPool</code> is a hash <p>From the implementation viewpoint, <code>ClassPool</code> is a hash

Loading…
Cancel
Save