Add Proxy support.
From-SVN: r57635
This commit is contained in:
parent
ccf7aef428
commit
d3cc3f10da
20 changed files with 2252 additions and 237 deletions
|
@ -170,6 +170,16 @@ java::lang::ClassLoader::markClassErrorState0 (java::lang::Class *klass)
|
|||
klass->notifyAll ();
|
||||
}
|
||||
|
||||
jclass
|
||||
java::lang::VMClassLoader::defineClass (java::lang::ClassLoader *cl,
|
||||
jstring name,
|
||||
jbyteArray data,
|
||||
jint offset,
|
||||
jint length)
|
||||
{
|
||||
return cl->defineClass (name, data, offset, length);
|
||||
}
|
||||
|
||||
jclass
|
||||
java::lang::VMClassLoader::getPrimitiveClass (jchar type)
|
||||
{
|
||||
|
@ -269,6 +279,7 @@ _Jv_PrepareCompiledClass (jclass klass)
|
|||
else if (pool->tags[index] == JV_CONSTANT_String)
|
||||
{
|
||||
jstring str;
|
||||
|
||||
str = _Jv_NewStringUtf8Const (pool->data[index].utf8);
|
||||
pool->data[index].o = str;
|
||||
pool->tags[index] |= JV_CONSTANT_ResolvedFlag;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue