In the JVM and the JNI documentations I can't find a reference for RuntimeVisibleAnnotations
. Is it possible (eventually with constant pool) to get the annotations?
Asked
Active
Viewed 184 times
1

Christian Ammer
- 7,464
- 6
- 51
- 108
-
In which form would you like to get these annotations? You can just invoke Java `getDeclaredAnnotations()` method using JNI `CallObjectMethod`. – apangin Apr 07 '16 at 08:50
-
@apangin: Thank you for this hint – Christian Ammer Apr 08 '16 at 09:48