src/java.base/share/classes/sun/reflect/annotation/TypeAnnotationParser.java

Print this page

        

*** 33,43 **** import java.util.Arrays; import java.util.List; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; ! import sun.misc.JavaLangAccess; import sun.reflect.ConstantPool; import static sun.reflect.annotation.TypeAnnotation.*; /** * TypeAnnotationParser implements the logic needed to parse --- 33,44 ---- import java.util.Arrays; import java.util.List; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; ! import jdk.internal.misc.SharedSecrets; ! import jdk.internal.misc.JavaLangAccess; import sun.reflect.ConstantPool; import static sun.reflect.annotation.TypeAnnotation.*; /** * TypeAnnotationParser implements the logic needed to parse
*** 307,317 **** * find the ones that are applicable to the type variable. */ static TypeAnnotation[] parseAllTypeAnnotations(AnnotatedElement decl) { Class<?> container; byte[] rawBytes; ! JavaLangAccess javaLangAccess = sun.misc.SharedSecrets.getJavaLangAccess(); if (decl instanceof Class) { container = (Class<?>)decl; rawBytes = javaLangAccess.getRawClassTypeAnnotations(container); } else if (decl instanceof Executable) { container = ((Executable)decl).getDeclaringClass(); --- 308,318 ---- * find the ones that are applicable to the type variable. */ static TypeAnnotation[] parseAllTypeAnnotations(AnnotatedElement decl) { Class<?> container; byte[] rawBytes; ! JavaLangAccess javaLangAccess = SharedSecrets.getJavaLangAccess(); if (decl instanceof Class) { container = (Class<?>)decl; rawBytes = javaLangAccess.getRawClassTypeAnnotations(container); } else if (decl instanceof Executable) { container = ((Executable)decl).getDeclaringClass();