Uses of Interface
com.sun.source.doctree.IdentifierTree
Packages that use 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
Methods in com.sun.source.doctree that return IdentifierTreeModifier and TypeMethodDescriptionParamTree.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 IdentifierTreeModifier and TypeMethodDescriptionDocTreeVisitor.visitIdentifier
(IdentifierTree node, P p) Visits an IdentifierTree node. -
Uses of IdentifierTree in com.sun.source.util
Methods in com.sun.source.util that return IdentifierTreeModifier and TypeMethodDescriptionDocTreeFactory.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 IdentifierTreeModifier 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 an IdentifierTree node.SimpleDocTreeVisitor.visitIdentifier
(IdentifierTree node, P p) Visits an IdentifierTree node.