public interface AnnotationProvider
| Modifier and Type | Method and Description | 
|---|---|
AnnotationMirror | 
getAnnotationMirror(Tree tree,
                   Class<? extends Annotation> target)
Return the annotation on  
tree that is in the hierarchy that contains the qualifier
 target. | 
AnnotationMirror | 
getDeclAnnotation(Element elt,
                 Class<? extends Annotation> anno)
Returns the AnnotationMirror, of the given class or an alias of it, used to annotate the
 element. 
 | 
AnnotationMirror getDeclAnnotation(Element elt, Class<? extends Annotation> anno)
anno exists on elt.elt - the elementanno - annotation classanno on elt, or an equivalent one, or
     null if none exists on annoAnnotationMirror getAnnotationMirror(Tree tree, Class<? extends Annotation> target)
tree that is in the hierarchy that contains the qualifier
 target. Returns null if none exists.tree - the tree of which the annotation is returnedtarget - the class of the annotationtree that has the class target, or null