Searched refs:hasMatchingAnnotation (Results 1 – 2 of 2) sorted by relevance
472 public static boolean hasMatchingAnnotation(AnnotatedElement elem, String annotationSpec) { in hasMatchingAnnotation() method in ReflectionHelper511 if (hasMatchingAnnotation(c, annotationSpec)) { in getAnnotatedConstructorsImpl()543 if (hasMatchingAnnotation(m, annotationSpec)) { in getAnnotatedMethodsImpl()569 if (hasMatchingAnnotation(f, annotationSpec)) { in getAnnotatedFieldsImpl()581 if (hasMatchingAnnotation(clazz, annotationSpec)) { in isInAnnotatedClass()592 return hasMatchingAnnotation(field, annotationSpec) in isAnnotatedOrInAnnotatedClass()601 return hasMatchingAnnotation(constructor, annotationSpec) in isAnnotatedOrInAnnotatedClass()609 return hasMatchingAnnotation(method, annotationSpec) in isAnnotatedOrInAnnotatedClass()
53 if (ReflectionHelper.hasMatchingAnnotation(clazz, annotationSpec)) { in AnnotationChecker()