diff --git a/spring-core/src/main/java/org/springframework/core/annotation/AnnotatedElementUtils.java b/spring-core/src/main/java/org/springframework/core/annotation/AnnotatedElementUtils.java index a04b32ce5b6..5c3fd570672 100644 --- a/spring-core/src/main/java/org/springframework/core/annotation/AnnotatedElementUtils.java +++ b/spring-core/src/main/java/org/springframework/core/annotation/AnnotatedElementUtils.java @@ -30,20 +30,20 @@ import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; /** - * General utility methods for working with annotations and meta-annotations - * present on {@link AnnotatedElement AnnotatedElements}. + * General utility methods for finding annotations and meta-annotations on + * {@link AnnotatedElement AnnotatedElements}. * *

{@code AnnotatedElementUtils} defines the public API for Spring's - * meta-annotation programming model with support for annotation attribute - * overrides. If you do not need support for annotation attribute overrides, - * consider using {@link AnnotationUtils} instead. + * meta-annotation programming model with support for annotation attribute + * overrides. If you do not need support for annotation attribute + * overrides, consider using {@link AnnotationUtils} instead. * *

Note that the features of this class are not provided by the JDK's * introspection facilities themselves. * - *

Annotation Attribute Override Support

+ *

Annotation Attribute Overrides

*

Support for meta-annotations with attribute overrides in - * composed annotations is provided by all + * composed annotations is provided by all variants of the * {@code getAnnotationAttributes()} and {@code findAnnotationAttributes()} * methods. *