(String name)
| 21 | |
| 22 | public class SystemClassLoader extends ClassLoader { |
| 23 | private native VMClass findVMClass(String name) |
| 24 | throws ClassNotFoundException; |
| 25 | |
| 26 | protected Class findClass(String name) throws ClassNotFoundException { |
| 27 | return getClass(findVMClass(name)); |