Uses of Interface
com.sun.source.doctree.ReferenceTree
Packages that use ReferenceTree
Package
Description
Provides interfaces to represent documentation comments as abstract syntax
trees (AST).
Provides utilities for operations on abstract syntax trees (AST).
-
Uses of ReferenceTree in com.sun.source.doctree
Methods in com.sun.source.doctree that return ReferenceTreeModifier and TypeMethodDescriptionThrowsTree.getExceptionName()
Returns the name of the exception being documented.LinkTree.getReference()
Returns the reference of the link.ValueTree.getReference()
Returns the reference to the value.ProvidesTree.getServiceType()
Returns the name of the service type being documented.UsesTree.getServiceType()
Returns the name of the service type being documented.SerialFieldTree.getType()
Returns the type of the serial field.Methods in com.sun.source.doctree with parameters of type ReferenceTreeModifier and TypeMethodDescriptionDocTreeVisitor.visitReference
(ReferenceTree node, P p) Visits a ReferenceTree node. -
Uses of ReferenceTree in com.sun.source.util
Methods in com.sun.source.util that return ReferenceTreeModifier and TypeMethodDescriptionDocTreeFactory.newReferenceTree
(String signature) Creates a newReferenceTree
object, to represent a reference to an API element.Methods in com.sun.source.util with parameters of type ReferenceTreeModifier and TypeMethodDescriptionDocTreeFactory.newExceptionTree
(ReferenceTree name, List<? extends DocTree> description) Creates a newThrowsTree
object, to represent an@exception
tag.DocTreeFactory.newLinkPlainTree
(ReferenceTree ref, List<? extends DocTree> label) Creates a newLinkTree
object, to represent a{@linkplain }
tag.DocTreeFactory.newLinkTree
(ReferenceTree ref, List<? extends DocTree> label) Creates a newLinkTree
object, to represent a{@link }
tag.DocTreeFactory.newProvidesTree
(ReferenceTree name, List<? extends DocTree> description) Creates a newProvidesTree
object, to represent a@provides
tag.DocTreeFactory.newSerialFieldTree
(IdentifierTree name, ReferenceTree type, List<? extends DocTree> description) Creates a newSerialFieldTree
object, to represent a@serialField
tag.DocTreeFactory.newThrowsTree
(ReferenceTree name, List<? extends DocTree> description) Creates a newThrowsTree
object, to represent a@throws
tag.DocTreeFactory.newUsesTree
(ReferenceTree name, List<? extends DocTree> description) Creates a newUsesTree
object, to represent a@uses
tag.DocTreeFactory.newValueTree
(ReferenceTree ref) Creates a newValueTree
object, to represent a{@value }
tag.DocTreeScanner.visitReference
(ReferenceTree node, P p) Visits a ReferenceTree node.SimpleDocTreeVisitor.visitReference
(ReferenceTree node, P p) Visits a ReferenceTree node.