Uses of Interface
com.sun.source.doctree.ReferenceTree
Packages that use ReferenceTree
包
描述
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 ReferenceTree修饰符和类方法描述ThrowsTree.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 ReferenceTree -
Uses of ReferenceTree in com.sun.source.util
Methods in com.sun.source.util that return ReferenceTree修饰符和类方法描述DocTreeFactory.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 ReferenceTree修饰符和类方法描述DocTreeFactory.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.