sun.misc
Class CDCAppClassLoader

java.lang.Object
  extended by java.lang.ClassLoader
      extended by java.security.SecureClassLoader
          extended by java.net.URLClassLoader
              extended by sun.misc.CDCAppClassLoader

public class CDCAppClassLoader
extends URLClassLoader


Constructor Summary
CDCAppClassLoader(URL[] urls, ClassLoader parent)
           
 
Method Summary
 Class loadClass(String name)
          Loads the class with the specified name.
 
Methods inherited from class java.net.URLClassLoader
addURL, definePackage, findClass, findResource, findResources, getPermissions, getURLs, newInstance, newInstance
 
Methods inherited from class java.security.SecureClassLoader
defineClass
 
Methods inherited from class java.lang.ClassLoader
clearAssertionStatus, defineClass, defineClass, definePackage, findLibrary, findLoadedClass, findSystemClass, getPackage, getPackages, getParent, getResource, getResourceAsStream, getResources, getSystemClassLoader, getSystemResource, getSystemResourceAsStream, getSystemResources, loadClass, resolveClass, setClassAssertionStatus, setDefaultAssertionStatus, setPackageAssertionStatus, setSigners
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CDCAppClassLoader

public CDCAppClassLoader(URL[] urls,
                         ClassLoader parent)
Method Detail

loadClass

public Class loadClass(String name)
                throws ClassNotFoundException
Description copied from class: ClassLoader
Loads the class with the specified name. This method searches for classes in the same manner as the ClassLoader.loadClass(String, boolean) method. It is invoked by the Java virtual machine to resolve class references. Invoking this method is equivalent to invoking loadClass(name, false).

Overrides:
loadClass in class ClassLoader
Parameters:
name - The name of the class
Returns:
The resulting Class object
Throws:
ClassNotFoundException - If the class was not found