Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public abstract interface LoaderHandler { // Constants public static final String packagePrefix; // Public Instance Methods public abstract Object getSecurityContext(ClassLoader loader); public abstract Class loadClass(String name) throws MalformedURLException, ClassNotFoundException; public abstract Class loadClass(URL codebase, String name) throws MalformedURLException, ClassNotFoundException; }