Uses of Interface
com.sun.source.doctree.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
Modifier 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.Modifier and TypeMethodDescriptionDocTreeVisitor.visitReference
(ReferenceTree node, P p) Visits aReferenceTree
node. -
Uses of ReferenceTree in com.sun.source.util
Modifier and TypeMethodDescriptionDocTreeFactory.newReferenceTree
(String signature) Creates a newReferenceTree
object, to represent a reference to an API element.Modifier 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.default ValueTree
DocTreeFactory.newValueTree
(TextTree format, ReferenceTree ref) Creates a newValueTree
object, to represent a{@value }
tag.DocTreeScanner.visitReference
(ReferenceTree node, P p) Visits aReferenceTree
node.SimpleDocTreeVisitor.visitReference
(ReferenceTree node, P p) Visits aReferenceTree
node.