Uses of Interface
com.sun.source.doctree.IdentifierTree
Package
Description
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
Modifier and TypeMethodDescriptionParamTree.getName()
Returns the name of the parameter.SerialFieldTree.getName()
Returns the name of the serial field.Modifier and TypeMethodDescriptionDocTreeVisitor.visitIdentifier
(IdentifierTree node, P p) Visits anIdentifierTree
node. -
Uses of IdentifierTree in com.sun.source.util
Modifier and TypeMethodDescriptionDocTreeFactory.newIdentifierTree
(Name name) Creates a newIdentifierTree
object, to represent an identifier, such as in a@param
tag.Modifier and TypeMethodDescriptionDocTreeFactory.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.