summaryrefslogtreecommitdiffstats
path: root/src/main/javassist/ClassPool.java
Commit message (Collapse)AuthorAgeFilesLines
...
* get0 should look in cached classes first as code extending ClassPool behaviorpatriot1burke2004-04-121-1/+2
| | | | | | | may use different mechanism than parent/child. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@83 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* write0 should never delegate to parent. The ClassPool that the CtClass is ↵patriot1burke2004-04-121-4/+0
| | | | | | | | | associated with should always be the pool that loaded the class. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@82 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* fixed some things that broke JBoss AOPpatriot1burke2004-04-121-1/+1
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@81 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* addTranslator() was still wrong.chiba2004-04-091-2/+6
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@80 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* renamed insertTranslator() in ClassPool to addTranslator() sincechiba2004-04-071-6/+17
| | | | | | | | it appends a class path to the tail of the chain. ClassClassPath has been implemented. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@79 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* changed delimiters, etc.chiba2004-04-051-4/+2
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@78 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* changed the stuff related to ClassPool.chiba2004-04-051-141/+180
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@76 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* update javadoc comments.chiba2004-02-201-1/+20
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@70 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* If a newly created method does not have a throws clause, an emptychiba2004-02-151-0/+1
| | | | | | | Exceptions attribute had been added. This problem has been fixed. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@69 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* updated the copyright notices.chiba2004-01-081-1/+1
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@67 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* Implemented several methods (e.g. CtClass#getURL) to support securitychiba2003-12-251-0/+11
| | | | | | | policies based on code source. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@59 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* Fixed a bug of the token analyzer (double constant).chiba2003-12-201-0/+14
| | | | | | | Improved compilation speed. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@58 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* fixed a bug on method lookup.chiba2003-12-101-0/+3
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@57 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* made the compiler support inner classes appearing in type names.chiba2003-12-071-2/+2
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@56 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* updated tutorial so that it says the class names passed to the compilerchiba2003-09-191-0/+3
| | | | | | | must be fully-qualified names. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@47 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* made ClassPool.SimpleLoader public.chiba2003-09-041-3/+20
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@42 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* fixed a bug in the compiler, which could not compile a try statementchiba2003-08-171-2/+2
| | | | | | | correctly. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@33 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* updated some javadoc comments.chiba2003-08-041-4/+15
| | | | | | | modified Loader so that getPackage() works. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@32 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* added ClassPool#removeCached so that subclasses of ClassPool can dochiba2003-07-111-1/+14
| | | | | | | 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
* enforced close() in a finally block.chiba2003-07-091-2/+7
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@28 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* minor bugs have been fixed.chiba2003-07-081-0/+1
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@27 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* - Made ClassPool.get0 protected so that subclasses of ClassPool can call itpatriot1burke2003-05-231-4/+12
| | | | | | | - Moved all access to the class cache in ClassPool (ClassPool.classes) to a method called getCached(String classname). This is so subclasses of ClassPool can override this behavior. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@22 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* changed the license.chiba2003-04-301-8/+9
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@12 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* Changed the copyright notices and removed tab characters.chiba2003-04-231-281/+316
| | | | git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@9 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
* This commit was generated by cvs2svn to compensate for changes in r2, whichpatriot1burke2003-04-221-0/+748
included commits to RCS files with non-trunk default branches. git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@6 30ef5769-5b8d-40dd-aea6-55b5d6557bb3