]> source.dussan.org Git - javassist.git/commitdiff
updated javadoc comments.
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sat, 1 Jul 2006 02:13:08 +0000 (02:13 +0000)
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>
Sat, 1 Jul 2006 02:13:08 +0000 (02:13 +0000)
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@285 30ef5769-5b8d-40dd-aea6-55b5d6557bb3

src/main/javassist/URLClassPath.java
tutorial/tutorial.html

index a9255ab050198485dacc216d2595dcde780c03d1..0c2202016e86f842b1de161063d2fd67cc85f59d 100644 (file)
@@ -36,9 +36,17 @@ public class URLClassPath implements ClassPath {
      *
      * <p>This search path is used only if a requested
      * class name starts with the name specified by <code>packageName</code>.
-     * If <code>packageName</code> is "mypack" and a requested class is
-     * "mypack.sub.Test", then the given URL is used for loading that class.
-     * If <code>packageName</code> is <code>null</code>, the URL is used
+     * If <code>packageName</code> is "org.javassist" and a requested class is
+     * "org.javassist.test.Main", then the given URL is used for loading that class.
+     * The <code>URLClassPath</code> obtains a class file from:
+     *
+     * <ul><pre>http://www.javassist.org:80/java/classes/org/javassist/test/Main.class
+     * </pre></ul>
+     *
+     * <p>Here, we assume that <code>host</code> is "www.javassist.org",
+     * <code>port</code> is 80, and <code>directory</code> is "/java/classes/".
+     *
+     * <p>If <code>packageName</code> is <code>null</code>, the URL is used
      * for loading any class.
      *
      * @param host              host name
index b68677ee252d0ec021ec86251ff747f0bea76516..8776d8f89ae3c1e7d16489b3fcb81d18fe65048c 100644 (file)
@@ -230,7 +230,11 @@ pool.insertClassPath(cp);
 
 <p>This program adds "http://www.javassist.org:80/java/" to the class search
 path.  This URL is used only for searching classes belonging to a
-package <code>org.javassist</code>.
+package <code>org.javassist</code>.  For example, to load a class
+<code>org.javassist.test.Main</code>, its class file will be obtained from:
+
+<ul><pre>http://www.javassist.org:80/java/org/javassist/test/Main.class
+</pre></ul>
 
 <p>Furthermore, you can directly give a byte array
 to a <code>ClassPool</code> object