Uses of Interface
com.sun.source.tree.AnnotationTree
-
Packages that use AnnotationTree 软件包 描述 com.sun.source.tree 提供将源代码表示为抽象语法树(AST)的接口。com.sun.source.util 为抽象语法树(AST)上的操作提供实用程序。 -
-
Uses of AnnotationTree in com.sun.source.tree
Methods in com.sun.source.tree that return types with arguments of type AnnotationTree 变量和类型 方法 描述 List<? extends AnnotationTree>
AnnotatedTypeTree. getAnnotations()
返回与此类型表达式关联的注释。List<? extends AnnotationTree>
ModifiersTree. getAnnotations()
返回此修饰符树中的注释。List<? extends AnnotationTree>
ModuleTree. getAnnotations()
返回与此模块声明关联的注释。List<? extends AnnotationTree>
NewArrayTree. getAnnotations()
返回基类型上的注释。List<? extends AnnotationTree>
PackageTree. getAnnotations()
返回与此包声明关联的注释。List<? extends AnnotationTree>
TypeParameterTree. getAnnotations()
返回类型参数声明中的注释。List<? extends List<? extends AnnotationTree>>
NewArrayTree. getDimAnnotations()
返回每个维度表达式的注释。List<? extends AnnotationTree>
CompilationUnitTree. getPackageAnnotations()
返回此编译单元头部的任何包声明中列出的注释,如果没有包声明,则null
。Methods in com.sun.source.tree with parameters of type AnnotationTree 变量和类型 方法 描述 R
TreeVisitor. visitAnnotation(AnnotationTree node, P p)
访问AnnotatedTree节点。 -
Uses of AnnotationTree in com.sun.source.util
Methods in com.sun.source.util with parameters of type AnnotationTree 变量和类型 方法 描述 R
SimpleTreeVisitor. visitAnnotation(AnnotationTree node, P p)
访问AnnotatedTree节点。R
TreeScanner. visitAnnotation(AnnotationTree node, P p)
Visits an AnnotatedTree node.
-