Document attribute alias support in AnnotationUtils

master
Sam Brannen 9 years ago
parent 2451594cdd
commit 3da59178e5
  1. 6
      spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java

@ -76,6 +76,12 @@ import org.springframework.util.StringUtils;
* for meta-annotations with <em>attribute overrides</em> in * for meta-annotations with <em>attribute overrides</em> in
* <em>composed annotations</em>, use {@link AnnotatedElementUtils} instead. * <em>composed annotations</em>, use {@link AnnotatedElementUtils} instead.
* *
* <h3>Attribute Aliases</h3>
* <p>All public methods in this class that return annotations, arrays of
* annotations, or {@link AnnotationAttributes} transparently support attribute
* aliases configured via {@link AliasFor @AliasFor}. Consult the various
* {@code synthesizeAnnotation*(..)} methods for details.
*
* <h3>Search Scope</h3> * <h3>Search Scope</h3>
* <p>The search algorithms used by methods in this class stop searching for * <p>The search algorithms used by methods in this class stop searching for
* an annotation once the first annotation of the specified type has been * an annotation once the first annotation of the specified type has been

Loading…
Cancel
Save