]> source.dussan.org Git - javassist.git/commitdiff
Edited javadoc comments.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 9 Sep 2004 14:38:43 +0000 (14:38 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Thu, 9 Sep 2004 14:38:43 +0000 (14:38 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@134 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/LoaderClassPath.java

index 9e141fa7fdfe0ac0f238f3981a1ffd64f3a41ed5..d8a3954b94782c951d3114ab36d3af992353c0b9 100644 (file)
@@ -28,6 +28,9 @@ import java.lang.ref.WeakReference;
  * <code>WeakReference</code>.  If the class loader is garbage collected,
  * the other search pathes are examined.
  *
+ * <p>The given class loader must have both <code>getResourceAsStream()</code>
+ * and <code>getResource()</code>.
+ *
  * @author <a href="mailto:bill@jboss.org">Bill Burke</a>
  * @author Shigeru Chiba
  *
@@ -55,6 +58,8 @@ public class LoaderClassPath implements ClassPath {
 
     /**
      * Obtains a class file from the class loader.
+     * This method calls <code>getResourceAsStream(String)</code>
+     * on the class loader.
      */
     public InputStream openClassfile(String classname) {
         String cname = classname.replace('.', '/') + ".class";
@@ -67,6 +72,8 @@ public class LoaderClassPath implements ClassPath {
 
     /**
      * Obtains the URL of the specified class file.
+     * This method calls <code>getResource(String)</code>
+     * on the class loader.
      *
      * @return null if the class file could not be found. 
      */