flesh out ClassLoader, etc.

This commit is contained in:
Joel Dice
2007-07-30 17:19:05 -06:00
parent da692a539f
commit 38d4ee6e07
10 changed files with 272 additions and 144 deletions

View File

@ -0,0 +1,9 @@
package java.lang;
public class SystemClassLoader extends ClassLoader {
private Object map;
protected native Class findClass(String name) throws ClassNotFoundException;
protected native Class findLoadedClass(String name);
}