public abstract interface LoaderHandler { // Constants public final static String packagePrefix; // Public Instance Methods public abstract Class loadClass(String name) throws MalformedURLException, ClassNotFoundException; public abstract Class loadClass(URL codebase, String name) throws MalformedURLException, ClassNotFoundException; }