classpath progress

This commit is contained in:
Joel Dice
2007-07-27 17:56:19 -06:00
parent c9f9b039e6
commit 363801af1c
10 changed files with 211 additions and 24 deletions

View File

@ -7,5 +7,9 @@ public class ClassLoader {
public static ClassLoader getSystemClassLoader() {
return instance;
}
}
public Class loadClass(String name) {
return Class.forName(name);
}
}