com.sun.source.tree
Interface AnnotationTree

All Superinterfaces:
ExpressionTree, Tree
All Known Implementing Classes:
JCTree.JCAnnotation

public interface AnnotationTree
extends ExpressionTree

A tree node for an annotation. For example:

    @annotationType
    @annotationType ( arguments )
 

Since:
1.6
See Also:
"The Java Language Specification, 3rd ed, section 9.7"

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
Tree.Kind
 
Method Summary
 Tree getAnnotationType()
           
 java.util.List<? extends ExpressionTree> getArguments()
           
 
Methods inherited from interface com.sun.source.tree.Tree
accept, getKind
 

Method Detail

getAnnotationType

Tree getAnnotationType()

getArguments

java.util.List<? extends ExpressionTree> getArguments()