Browse Source

Polish Javadoc for AnnotatedElementUtils

pull/778/merge
Sam Brannen 11 years ago
parent
commit
401bcd4a8a
  1. 14
      spring-core/src/main/java/org/springframework/core/annotation/AnnotatedElementUtils.java

14
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; import org.springframework.util.MultiValueMap;
/** /**
* General utility methods for working with annotations and meta-annotations * General utility methods for finding annotations and meta-annotations on
* <em>present</em> on {@link AnnotatedElement AnnotatedElements}. * {@link AnnotatedElement AnnotatedElements}.
* *
* <p>{@code AnnotatedElementUtils} defines the public API for Spring's * <p>{@code AnnotatedElementUtils} defines the public API for Spring's
* meta-annotation programming model with support for annotation attribute * meta-annotation programming model with support for <em>annotation attribute
* overrides. If you do not need support for annotation attribute overrides, * overrides</em>. If you do not need support for annotation attribute
* consider using {@link AnnotationUtils} instead. * overrides, consider using {@link AnnotationUtils} instead.
* *
* <p>Note that the features of this class are not provided by the JDK's * <p>Note that the features of this class are not provided by the JDK's
* introspection facilities themselves. * introspection facilities themselves.
* *
* <h3>Annotation Attribute Override Support</h3> * <h3>Annotation Attribute Overrides</h3>
* <p>Support for meta-annotations with <em>attribute overrides</em> in * <p>Support for meta-annotations with <em>attribute overrides</em> in
* <em>composed annotations</em> is provided by all * <em>composed annotations</em> is provided by all variants of the
* {@code getAnnotationAttributes()} and {@code findAnnotationAttributes()} * {@code getAnnotationAttributes()} and {@code findAnnotationAttributes()}
* methods. * methods.
* *

Loading…
Cancel
Save