support runtime-visible annotations and java.lang.reflect.Proxy

This commit is contained in:
Joel Dice
2009-09-18 18:01:54 -06:00
parent a2a33c259e
commit 7aa906d97b
23 changed files with 1278 additions and 169 deletions

View File

@ -83,7 +83,9 @@ public abstract class ClassLoader {
return c;
}
protected native void resolveClass(Class c);
protected void resolveClass(Class c) {
c.link(this);
}
private ClassLoader getParent() {
return parent;