]> source.dussan.org Git - javassist.git/commitdiff
updated javadoc comments.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 23 Mar 2006 13:52:47 +0000 (13:52 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 23 Mar 2006 13:52:47 +0000 (13:52 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@266 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/ClassPool.java

index cd869285ceaa7e0f9130e7ab2a5c0fc96bb5ef9e..1062d670e66e3491d11c57b3189cac95d037bf30 100644 (file)
@@ -754,26 +754,30 @@ public class ClassPool {
      * To load the class, this method uses the context class loader
      * of the current thread.  If the program is running on some application
      * server, the context class loader might be inappropriate to load the
-     * class.<p>
+     * class.
      * 
-     * This can be changed by subclassing the pool and changing
-     * the getClassLoader() method.
+     * <p>This can be changed by subclassing the pool and changing
+     * the <code>getClassLoader()</code> method.
      *
      * <p>This method is provided for convenience.  If you need more
      * complex functionality, you should write your own class loader.
      *
      * @see #toClass(CtClass, java.lang.ClassLoader)
+     * @see #getClassLoader()
      */
     public Class toClass(CtClass clazz) throws CannotCompileException {
         return toClass(clazz, getClassLoader()); 
     }
 
     /**
-     * Get the classloader for this pool.<p>
+     * Get the classloader for <code>toClass()</code>, <code>getAnnotations()</code> in
+     * <code>CtClass</code>, etc.
      * 
-     * The default is the context class loader.
+     * <p>The default is the context class loader.
      * 
      * @return the classloader for the pool
+     * @see #toClass(CtClass)
+     * @see CtClass#getAnnotations()
      */
     public ClassLoader getClassLoader() {
         return getContextClassLoader();