sun.misc
Class CDCAppClassLoader
java.lang.Object
java.lang.ClassLoader
java.security.SecureClassLoader
java.net.URLClassLoader
sun.misc.CDCAppClassLoader
public class CDCAppClassLoader
- extends URLClassLoader
| 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 |
CDCAppClassLoader
public CDCAppClassLoader(URL[] urls,
ClassLoader parent)
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