ClassLoader.java (setSigners): Implemented.
* java/lang/ClassLoader.java (setSigners): Implemented. * boehm.cc (_Jv_MarkObj): Mark `signers' field. * java/lang/natClassLoader.cc (_Jv_InitNewClassFields): Initialize new fields. * java/lang/Class.java (getSigners): Now native. (setSigners): Declare. * java/lang/natClass.cc (getSigners): New method. (getSigners): Likewise. * java/lang/Class.h (Class::signers): New field. (Class::setSigners): New method. From-SVN: r72271
This commit is contained in:
parent
ae125b177e
commit
b379e7b0e9
7 changed files with 37 additions and 6 deletions
|
@ -1534,6 +1534,18 @@ java::lang::Class::getProtectionDomain0 ()
|
|||
return protectionDomain;
|
||||
}
|
||||
|
||||
JArray<jobject> *
|
||||
java::lang::Class::getSigners()
|
||||
{
|
||||
return signers;
|
||||
}
|
||||
|
||||
void
|
||||
java::lang::Class::setSigners(JArray<jobject> *s)
|
||||
{
|
||||
signers = s;
|
||||
}
|
||||
|
||||
// Functions for indirect dispatch (symbolic virtual binding) support.
|
||||
|
||||
// There are two tables, atable and otable. atable is an array of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue