comparison src/share/vm/prims/jvm.h @ 7482:989155e2d07a

Merge with hs25-b15.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Jan 2013 01:34:24 +0100
parents ade95d680b42
children b14da2e6f2dc
comparison
equal deleted inserted replaced
7381:6761a8f854a4 7482:989155e2d07a
84 * class. 84 * class.
85 */ 85 */
86 86
87 #define JVM_INTERFACE_VERSION 4 87 #define JVM_INTERFACE_VERSION 4
88 88
89 JNIEXPORT jobjectArray JNICALL
90 JVM_GetMethodParameters(JNIEnv *env, jobject method);
89 91
90 JNIEXPORT jint JNICALL 92 JNIEXPORT jint JNICALL
91 JVM_GetInterfaceVersion(void); 93 JVM_GetInterfaceVersion(void);
92 94
93 /************************************************************************* 95 /*************************************************************************
517 519
518 // method is a handle to a java.lang.reflect.Method object 520 // method is a handle to a java.lang.reflect.Method object
519 JNIEXPORT jbyteArray JNICALL 521 JNIEXPORT jbyteArray JNICALL
520 JVM_GetMethodParameterAnnotations(JNIEnv *env, jobject method); 522 JVM_GetMethodParameterAnnotations(JNIEnv *env, jobject method);
521 523
524 /* Type use annotations support (JDK 1.8) */
525
526 JNIEXPORT jbyteArray JNICALL
527 JVM_GetClassTypeAnnotations(JNIEnv *env, jclass cls);
522 528
523 /* 529 /*
524 * New (JDK 1.4) reflection implementation 530 * New (JDK 1.4) reflection implementation
525 */ 531 */
526 532