diff options
author | Andrew Haley <aph@redhat.com> | 2007-04-02 16:36:52 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2007-04-02 16:36:52 +0000 |
commit | a0036853d2b6260c0a322da8d411dcebd3ac4f9e (patch) | |
tree | 826918a6ab1985e623a1617586fc734818568de0 /libjava/java/lang/reflect/Method.h | |
parent | e6c45b1e3435efa993309f69654ac5411327d755 (diff) | |
download | gcc-a0036853d2b6260c0a322da8d411dcebd3ac4f9e.zip gcc-a0036853d2b6260c0a322da8d411dcebd3ac4f9e.tar.gz gcc-a0036853d2b6260c0a322da8d411dcebd3ac4f9e.tar.bz2 |
natVMProxy.cc (run_proxy): Use _Jv_LookupProxyMethod to find the Method.
2007-04-02 Andrew Haley <aph@redhat.com>
* java/lang/reflect/natVMProxy.cc (run_proxy): Use
_Jv_LookupProxyMethod to find the Method.
If parameter_types->length == 0, pass a null paramameter list,
not a zero-length parameter list.
* java/lang/natClass.cc (_Jv_LookupProxyMethod): New function.
* java/lang/Class.h (_Jv_LookupProxyMethod): Declare.
From-SVN: r123431
Diffstat (limited to 'libjava/java/lang/reflect/Method.h')
-rw-r--r-- | libjava/java/lang/reflect/Method.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libjava/java/lang/reflect/Method.h b/libjava/java/lang/reflect/Method.h index 8a843d5..17056c1 100644 --- a/libjava/java/lang/reflect/Method.h +++ b/libjava/java/lang/reflect/Method.h @@ -13,6 +13,7 @@ jmethodID _Jv_FromReflectedMethod (java::lang::reflect::Method *); jobject _Jv_JNI_ToReflectedMethod (_Jv_JNIEnv *, jclass, jmethodID, jboolean); ::java::lang::reflect::Method *_Jv_GetReflectedMethod (jclass, _Jv_Utf8Const*, _Jv_Utf8Const*); +::java::lang::reflect::Method *_Jv_LookupProxyMethod (jclass, _Jv_Utf8Const *, _Jv_Utf8Const *); class java::lang::reflect::Method : public ::java::lang::reflect::AccessibleObject { @@ -79,6 +80,7 @@ public: friend class java::lang::Class; friend class java::io::ObjectInputStream; friend java::lang::reflect::Method* ::_Jv_GetReflectedMethod (jclass, _Jv_Utf8Const*, _Jv_Utf8Const*); + friend java::lang::reflect::Method* ::_Jv_LookupProxyMethod (jclass, _Jv_Utf8Const *, _Jv_Utf8Const *); }; #endif // __java_lang_reflect_Method__ |