Lines Matching refs:printDeclaredAnnotation
76 printDeclaredAnnotation(SingleUser.class, Calendar.class); in testDeclaredAnnotation()
77 printDeclaredAnnotation(SingleUser.class, Calendars.class); in testDeclaredAnnotation()
79 printDeclaredAnnotation(User.class, Calendar.class); in testDeclaredAnnotation()
80 printDeclaredAnnotation(User.class, Calendars.class); in testDeclaredAnnotation()
82 printDeclaredAnnotation(UserComplex.class, Calendar.class); in testDeclaredAnnotation()
83 printDeclaredAnnotation(UserComplex.class, Calendars.class); in testDeclaredAnnotation()
85 printDeclaredAnnotation(UserSub.class, Calendar.class); in testDeclaredAnnotation()
86 printDeclaredAnnotation(UserSub.class, Calendars.class); in testDeclaredAnnotation()
88 printDeclaredAnnotation(UserSub2.class, Calendar.class); in testDeclaredAnnotation()
89 printDeclaredAnnotation(UserSub2.class, Calendars.class); in testDeclaredAnnotation()
142 private static <A extends Annotation> void printDeclaredAnnotation(Class<?> annotationUseClass, in printDeclaredAnnotation() method in AnnotationTest