diff options
author | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-05 16:06:27 +0000 |
---|---|---|
committer | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-05 16:06:27 +0000 |
commit | 2abaa5a3b86121453d7be0000f70418c08784c0d (patch) | |
tree | db2cc96f747dfe385b80f218bee0aca23560701e /libjava/headers.txt | |
parent | 3dbf7319f6bfc98d7cfc1318538554278e42648a (diff) | |
download | gcc-2abaa5a3b86121453d7be0000f70418c08784c0d.tar.gz |
2007-03-05 Andrew Haley <aph@redhat.com>
* java/lang/reflect/natVMProxy.cc (ncode_closure.meth): Delete.
(generateProxyClass): Don't pass method to ncode.
(run_proxy): Call _Jv_GetReflectedMethod to find the proxy method.
* java/lang/reflect/Method.h: Rebuild.
* java/lang/reflect/Method.java (internalGetParameterTypes,
internalGetExceptionTypes): New methods.
* headers.txt (class java/lang/reflect/Method): Declare
_Jv_GetReflectedMethod. Be its friend.
* java/lang/natClass.cc (_Jv_GetReflectedMethod): New method.
* java/lang/Class.h: Declare it. Be its friend.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122554 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/headers.txt')
-rw-r--r-- | libjava/headers.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libjava/headers.txt b/libjava/headers.txt index afc64189ab2..c7a4caa3bf4 100644 --- a/libjava/headers.txt +++ b/libjava/headers.txt @@ -56,10 +56,12 @@ friend class java::lang::Class; class java/lang/reflect/Method prepend jmethodID _Jv_FromReflectedMethod (java::lang::reflect::Method *); prepend jobject _Jv_JNI_ToReflectedMethod (_Jv_JNIEnv *, jclass, jmethodID, jboolean); +prepend ::java::lang::reflect::Method *_Jv_GetReflectedMethod (jclass, _Jv_Utf8Const*, _Jv_Utf8Const*); friend jmethodID (::_Jv_FromReflectedMethod) (java::lang::reflect::Method *); friend jobject (::_Jv_JNI_ToReflectedMethod) (_Jv_JNIEnv *, jclass, jmethodID, jboolean); friend class java::lang::Class; friend class java::io::ObjectInputStream; +friend java::lang::reflect::Method* ::_Jv_GetReflectedMethod (jclass, _Jv_Utf8Const*, _Jv_Utf8Const*); class gnu/gcj/runtime/ExtensionClassLoader friend class ::java::lang::ClassLoader; |