home *** CD-ROM | disk | FTP | other *** search
- package java.lang;
-
- public abstract class ClassLoader {
- protected ClassLoader() {
- SecurityManager security = System.getSecurityManager();
- if (security != null) {
- security.checkCreateClassLoader();
- }
-
- this.init();
- }
-
- protected abstract Class loadClass(String var1, boolean var2) throws ClassNotFoundException;
-
- protected final native Class defineClass(byte[] var1, int var2, int var3);
-
- protected final native void resolveClass(Class var1);
-
- protected final native Class findSystemClass(String var1) throws ClassNotFoundException;
-
- private native void init();
- }
-