Uses of Interface
com.sun.source.doctree.IdentifierTree
Packages that use IdentifierTree
包
描述
Provides interfaces to represent documentation comments as abstract syntax
trees (AST).
Provides utilities for operations on abstract syntax trees (AST).
-
Uses of IdentifierTree in com.sun.source.doctree
Methods in com.sun.source.doctree that return IdentifierTree修饰符和类方法描述ParamTree.getName()
Returns the name of the parameter.SerialFieldTree.getName()
Returns the name of the serial field.Methods in com.sun.source.doctree with parameters of type IdentifierTree -
Uses of IdentifierTree in com.sun.source.util
Methods in com.sun.source.util that return IdentifierTree修饰符和类方法描述DocTreeFactory.newIdentifierTree
(Name name) Creates a newIdentifierTree
object, to represent an identifier, such as in a@param
tag.Methods in com.sun.source.util with parameters of type IdentifierTree修饰符和类方法描述DocTreeFactory.newParamTree
(boolean isTypeParameter, IdentifierTree name, List<? extends DocTree> description) Creates a newParamTree
object, to represent a@param
tag.DocTreeFactory.newSerialFieldTree
(IdentifierTree name, ReferenceTree type, List<? extends DocTree> description) Creates a newSerialFieldTree
object, to represent a@serialField
tag.DocTreeScanner.visitIdentifier
(IdentifierTree node, P p) Visits anIdentifierTree
node.SimpleDocTreeVisitor.visitIdentifier
(IdentifierTree node, P p) Visits anIdentifierTree
node.