Generated by
JDiff

Class java.lang.ClassLoader

Documentation changed from old to new.

Changed Constructors
ClassLoader(ClassLoader) Documentation changed from old to new.
Creates a new class loader using the specified parent class loader for delegation.
 

Changed Methods
Package definePackage(String, String, String, String, String, String, String, URL) Documentation changed from old to new.
Defines a package by name in this ClassLoader.
Class findClass(String) Documentation changed from old to new.
Finds the specified class.
String findLibrary(String) Documentation changed from old to new.
Returns the absolute path name of a native library.
URL findResource(String) Documentation changed from old to new.
Finds the resource with the given name.
Enumeration findResources(String) Documentation changed from old to new.
Returns an Enumeration of URLs representing all the resources with the given name.
Class findSystemClass(String) Documentation changed from old to new.
Finds a class with the specified name loading it if necessary.
Package getPackage(String) Documentation changed from old to new.
Returns a Package that has been defined by this class loader or any of its ancestors.
Package[] getPackages() Documentation changed from old to new.
Returns all of the Packages defined by this class loader and its ancestors.
ClassLoader getParent() Documentation changed from old to new.
Returns the parent class loader for delegation.
Enumeration getResources(String) Documentation changed from old to new.
Finds all the resources with the given name.
ClassLoader getSystemClassLoader() Documentation changed from old to new.
Returns the system class loader for delegation.
URL getSystemResource(String) Documentation changed from old to new.
Find a resource of the specified name from the search path used to load classes.
Enumeration getSystemResources(String) Documentation changed from old to new.
Finds all resources of the specified name from the search path used to load classes.
Class defineClass(String, byte[], int, int, ProtectionDomain) Documentation changed from old to new.
Converts an array of bytes into an instance of class Class with an optional ProtectionDomain.
Class loadClass(String, boolean) Documentation changed from old to new.
Loads the class with the specified name.