Uses of Interface
com.sun.source.doctree.IdentifierTree
-
Packages that use IdentifierTree 软件包 描述 com.sun.source.doctree 提供将文档注释表示为抽象语法树(AST)的接口。com.sun.source.util 为抽象语法树(AST)上的操作提供实用程序。 -
-
Uses of IdentifierTree in com.sun.source.doctree
Methods in com.sun.source.doctree that return IdentifierTree 变量和类型 方法 描述 IdentifierTree
ParamTree. getName()
返回参数的名称。IdentifierTree
SerialFieldTree. getName()
返回串行字段的名称。Methods in com.sun.source.doctree with parameters of type IdentifierTree 变量和类型 方法 描述 R
DocTreeVisitor. visitIdentifier(IdentifierTree node, P p)
访问IdentifierTree节点。 -
Uses of IdentifierTree in com.sun.source.util
Methods in com.sun.source.util that return IdentifierTree 变量和类型 方法 描述 IdentifierTree
DocTreeFactory. newIdentifierTree(Name name)
创建一个新的IdentifierTree
对象,以表示标识符,例如@param
标记。Methods in com.sun.source.util with parameters of type IdentifierTree 变量和类型 方法 描述 ParamTree
DocTreeFactory. newParamTree(boolean isTypeParameter, IdentifierTree name, List<? extends DocTree> description)
创建一个新的ParamTree
对象,以表示@param
标记。SerialFieldTree
DocTreeFactory. newSerialFieldTree(IdentifierTree name, ReferenceTree type, List<? extends DocTree> description)
创建一个新的SerialFieldTree
对象,以表示@serialField
标记。R
DocTreeScanner. visitIdentifier(IdentifierTree node, P p)
访问IdentifierTree节点。R
SimpleDocTreeVisitor. visitIdentifier(IdentifierTree node, P p)
访问IdentifierTree节点。
-