/* * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.lang.model; import java.lang.annotation.*; import java.util.List; import javax.lang.model.element.*; import javax.lang.model.type.*; /** * Represents a construct that can be annotated. * * A construct is either an {@linkplain * javax.lang.model.element.Element element} or a {@linkplain * javax.lang.model.type.TypeMirror type}. Annotations on an element * are on a declaration, whereas annotations on a type are on * a specific use of a type name. * * The terms directly present, present, * indirectly present, and associated are used * throughout this interface to describe precisely which annotations * are returned by the methods defined herein. * *
In the definitions below, an annotation A has an * annotation type AT. If AT is a repeatable annotation * type, the type of the containing annotation is ATC. * *
Annotation A is directly present on a construct * C if either: * *
Typically, if exactly one annotation of type AT appears in * the source code of representation of C, then A is * explicitly declared as applying to C. * * If there are multiple annotations of type AT present on * C, then if AT is repeatable annotation type, an * annotation of type ATC is implicitly declared on C. * *
An annotation A is present on a * construct C if either: *
The annotation returned by this method could contain an element * whose value is of type {@code Class}. * This value cannot be returned directly: information necessary to * locate and load a class (such as the class loader to use) is * not available, and the class might not be loadable at all. * Attempting to read a {@code Class} object by invoking the relevant * method on the returned annotation * will result in a {@link MirroredTypeException}, * from which the corresponding {@link TypeMirror} may be extracted. * Similarly, attempting to read a {@code Class[]}-valued element * will result in a {@link MirroredTypesException}. * *
* Note: This method is unlike others in this and related * interfaces. It operates on runtime reflective information — * representations of annotation types currently loaded into the * VM — rather than on the representations defined by and used * throughout these interfaces. Consequently, calling methods on * the returned annotation object can throw many of the exceptions * that can be thrown when calling methods on an annotation object * returned by core reflection. This method is intended for * callers that are written to operate on a known, fixed set of * annotation types. ** * @param the annotation type * @param annotationType the {@code Class} object corresponding to * the annotation type * @return this construct's annotation for the specified * annotation type if present, else {@code null} * * @see #getAnnotationMirrors() * @see java.lang.reflect.AnnotatedElement#getAnnotation * @see EnumConstantNotPresentException * @see AnnotationTypeMismatchException * @see IncompleteAnnotationException * @see MirroredTypeException * @see MirroredTypesException * @jls 9.6.1 Annotation Type Elements */ A getAnnotation(Class annotationType); /** * Returns annotations that are associated with this construct. * * If there are no annotations associated with this construct, the * return value is an array of length 0. * * The order of annotations which are directly or indirectly * present on a construct C is computed as if indirectly present * annotations on C are directly present on C in place of their * container annotation, in the order in which they appear in the * value element of the container annotation. * * The difference between this method and {@link #getAnnotation(Class)} * is that this method detects if its argument is a repeatable * annotation type, and if so, attempts to find one or more * annotations of that type by "looking through" a container annotation. * *
The annotations returned by this method could contain an element * whose value is of type {@code Class}. * This value cannot be returned directly: information necessary to * locate and load a class (such as the class loader to use) is * not available, and the class might not be loadable at all. * Attempting to read a {@code Class} object by invoking the relevant * method on the returned annotation * will result in a {@link MirroredTypeException}, * from which the corresponding {@link TypeMirror} may be extracted. * Similarly, attempting to read a {@code Class[]}-valued element * will result in a {@link MirroredTypesException}. * *
* Note: This method is unlike others in this and related * interfaces. It operates on runtime reflective information — * representations of annotation types currently loaded into the * VM — rather than on the representations defined by and used * throughout these interfaces. Consequently, calling methods on * the returned annotation object can throw many of the exceptions * that can be thrown when calling methods on an annotation object * returned by core reflection. This method is intended for * callers that are written to operate on a known, fixed set of * annotation types. ** * @param the annotation type * @param annotationType the {@code Class} object corresponding to * the annotation type * @return this construct's annotations for the specified annotation * type if present on this construct, else an empty array * * @see #getAnnotationMirrors() * @see #getAnnotation(Class) * @see java.lang.reflect.AnnotatedElement#getAnnotationsByType(Class) * @see EnumConstantNotPresentException * @see AnnotationTypeMismatchException * @see IncompleteAnnotationException * @see MirroredTypeException * @see MirroredTypesException * @jls 9.6 Annotation Types * @jls 9.6.1 Annotation Type Elements */ A[] getAnnotationsByType(Class annotationType); }