< prev index next >

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

Print this page

        

@@ -329,10 +329,14 @@
      */
     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 >