< prev index next >

src/java.base/share/classes/jdk/internal/reflect/ReflectionFactory.java

Print this page

        

*** 329,338 **** --- 329,342 ---- */ public byte[] getExecutableTypeAnnotationBytes(Executable ex) { return langReflectAccess().getExecutableTypeAnnotationBytes(ex); } + public Class<?>[] getExecutableSharedParameterTypes(Executable ex) { + return langReflectAccess().getExecutableSharedParameterTypes(ex); + } + //-------------------------------------------------------------------------- // // Routines used by serialization // //
< prev index next >