Class net.www.html.WWWClassLoader
All Packages    This Package    Previous    Next

Class net.www.html.WWWClassLoader

java.lang.Object
   |
   +----java.lang.ClassLoader
           |
           +----net.www.html.WWWClassLoader

public final class WWWClassLoader
extends ClassLoader

ctx

WWWClassLoader(URL)

loadClass(String)
Load a class from this class loader.
loadClass(String, boolean)
This method has to be synchronized to avoid two threads loading the same class at the same time...
localPackage(String)
Check if a package is local.

ctx
  public URL ctx

WWWClassLoader
  public WWWClassLoader(URL url)

localPackage
  public static synchronized boolean localPackage(String pkg)
Check if a package is local. The package name is seperated by /'s.

loadClass

  public Class loadClass(String name)
Load a class from this class loader.

loadClass

  protected synchronized Class loadClass(String name,
                                         boolean resolve)
This method has to be synchronized to avoid two threads loading the same class at the same time...
Overrides:
loadClass in class ClassLoader


All Packages    This Package    Previous    Next