From f6c16db268e47c2202f6098f4fae5a4537238857 Mon Sep 17 00:00:00 2001 From: chiba Date: Fri, 11 Jul 2003 06:24:57 +0000 Subject: added ClassPool#removeCached so that subclasses of ClassPool can do their own caching. A bug in CtClassType#setName was fixed. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@29 30ef5769-5b8d-40dd-aea6-55b5d6557bb3 --- tutorial/tutorial.html | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'tutorial/tutorial.html') diff --git a/tutorial/tutorial.html b/tutorial/tutorial.html index 36104e30..d0a26e3b 100644 --- a/tutorial/tutorial.html +++ b/tutorial/tutorial.html @@ -34,9 +34,10 @@ Shigeru Chiba Java bytecode is stored in a binary file called a class file. Each class file contains one Java class or interface. -

The class Javassist.CtClass is an abstract representation -of a class file. A CtClass object is a handle for dealing -with a class file. The following program is a very simple example: +

The class Javassist.CtClass is an abstract +representation of a class file. A CtClass (compile-time +class) object is a handle for dealing with a class file. The +following program is a very simple example: