java.lang.Object
com.sun.source.util.DocTreeScanner<R,P>
- All Implemented Interfaces:
DocTreeVisitor<R,P>
- Direct Known Subclasses:
DocTreePathScanner
public class DocTreeScanner<R,P> extends Object implements DocTreeVisitor<R,P>
A TreeVisitor that visits all the child tree nodes.
To visit nodes of a particular type, just override the
corresponding visitXYZ method.
Inside your method, call super.visitXYZ to visit descendant
nodes.
The default implementation of the visitXYZ methods will determine a result as follows:
- If the node being visited has no children, the result will be
null
. - If the node being visited has one child, the result will be the
result of calling
scan
on that child. The child may be a simple node or itself a list of nodes. - If the node being visited has more than one child, the result will
be determined by calling
scan
each child in turn, and then combining the result of each scan after the first with the cumulative result so far, as determined by thereduce(R, R)
method. Each child may be either a simple node of a list of nodes. The default behavior of thereduce
method is such that the result of the visitXYZ method will be the result of the last child scanned.
Here is an example to count the number of erroneous nodes in a tree:
class CountErrors extends DocTreeScanner<Integer,Void> { @Override public Integer visitErroneous(ErroneousTree node, Void p) { return 1; } @Override public Integer reduce(Integer r1, Integer r2) { return (r1 == null ? 0 : r1) + (r2 == null ? 0 : r2); } }
- Since:
- 1.8
-
Constructor Summary
Constructors Constructor Description DocTreeScanner()
-
Method Summary
Modifier and Type Method Description R
reduce(R r1, R r2)
Reduces two results into a combined result.R
scan(DocTree node, P p)
Scans a single node.R
scan(Iterable<? extends DocTree> nodes, P p)
Scans a sequence of nodes.R
visitAttribute(AttributeTree node, P p)
Visits an AttributeTree node.R
visitAuthor(AuthorTree node, P p)
Visits an AuthorTree node.R
visitComment(CommentTree node, P p)
Visits a CommentTree node.R
visitDeprecated(DeprecatedTree node, P p)
Visits a DeprecatedTree node.R
visitDocComment(DocCommentTree node, P p)
Visits a DocCommentTree node.R
visitDocRoot(DocRootTree node, P p)
Visits a DocRootTree node.R
visitDocType(DocTypeTree node, P p)
Visits a DocTypeTree node.R
visitEndElement(EndElementTree node, P p)
Visits an EndElementTree node.R
visitEntity(EntityTree node, P p)
Visits an EntityTree node.R
visitErroneous(ErroneousTree node, P p)
Visits an ErroneousTree node.R
visitHidden(HiddenTree node, P p)
Visits a HiddenTree node.R
visitIdentifier(IdentifierTree node, P p)
Visits an IdentifierTree node.R
visitIndex(IndexTree node, P p)
Visits an IndexTree node.R
visitInheritDoc(InheritDocTree node, P p)
Visits an InheritDocTree node.R
visitLink(LinkTree node, P p)
Visits a LinkTree node.R
visitLiteral(LiteralTree node, P p)
Visits an LiteralTree node.R
visitOther(DocTree node, P p)
Visits an unknown type of DocTree node.R
visitParam(ParamTree node, P p)
Visits a ParamTree node.R
visitProvides(ProvidesTree node, P p)
Visits a ProvidesTree node.R
visitReference(ReferenceTree node, P p)
Visits a ReferenceTree node.R
visitReturn(ReturnTree node, P p)
Visits a ReturnTree node.R
visitSee(SeeTree node, P p)
Visits a SeeTree node.R
visitSerial(SerialTree node, P p)
Visits a SerialTree node.R
visitSerialData(SerialDataTree node, P p)
Visits a SerialDataTree node.R
visitSerialField(SerialFieldTree node, P p)
Visits a SerialFieldTree node.R
visitSince(SinceTree node, P p)
Visits a SinceTree node.R
visitStartElement(StartElementTree node, P p)
Visits a StartElementTree node.R
visitSummary(SummaryTree node, P p)
Visits a SummaryTree node.R
visitSystemProperty(SystemPropertyTree node, P p)
Visits a SystemPropertyTree node.R
visitText(TextTree node, P p)
Visits a TextTree node.R
visitThrows(ThrowsTree node, P p)
Visits a ThrowsTree node.R
visitUnknownBlockTag(UnknownBlockTagTree node, P p)
Visits an UnknownBlockTagTree node.R
visitUnknownInlineTag(UnknownInlineTagTree node, P p)
Visits an UnknownInlineTagTree node.R
visitUses(UsesTree node, P p)
Visits a UsesTree node.R
visitValue(ValueTree node, P p)
Visits a ValueTree node.R
visitVersion(VersionTree node, P p)
Visits a VersionTreeTree node.
-
Constructor Details
-
DocTreeScanner
public DocTreeScanner()
-
-
Method Details
-
scan
Scans a single node.- Parameters:
node
- the node to be scannedp
- a parameter value passed to the visit method- Returns:
- the result value from the visit method
-
scan
Scans a sequence of nodes.- Parameters:
nodes
- the nodes to be scannedp
- a parameter value to be passed to the visit method for each node- Returns:
- the combined return value from the visit methods.
The values are combined using the
reduce
method.
-
reduce
Reduces two results into a combined result. The default implementation is to return the first parameter. The general contract of the method is that it may take any action whatsoever.- Parameters:
r1
- the first of the values to be combinedr2
- the second of the values to be combined- Returns:
- the result of combining the two parameters
-
visitAttribute
Visits an AttributeTree node. This implementation scans the children in left to right order.- Specified by:
visitAttribute
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitAuthor
Visits an AuthorTree node. This implementation scans the children in left to right order.- Specified by:
visitAuthor
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitComment
Visits a CommentTree node. This implementation returnsnull
.- Specified by:
visitComment
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitDeprecated
Visits a DeprecatedTree node. This implementation scans the children in left to right order.- Specified by:
visitDeprecated
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitDocComment
Visits a DocCommentTree node. This implementation scans the children in left to right order.- Specified by:
visitDocComment
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitDocRoot
Visits a DocRootTree node. This implementation returnsnull
.- Specified by:
visitDocRoot
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitDocType
Visits a DocTypeTree node. This implementation returnsnull
.- Specified by:
visitDocType
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitEndElement
Visits an EndElementTree node. This implementation returnsnull
.- Specified by:
visitEndElement
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitEntity
Visits an EntityTree node. This implementation returnsnull
.- Specified by:
visitEntity
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitErroneous
Visits an ErroneousTree node. This implementation returnsnull
.- Specified by:
visitErroneous
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitHidden
Visits a HiddenTree node. This implementation scans the children in left to right order.- Specified by:
visitHidden
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitIdentifier
Visits an IdentifierTree node. This implementation returnsnull
.- Specified by:
visitIdentifier
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitIndex
Visits an IndexTree node. This implementation returnsnull
.- Specified by:
visitIndex
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitInheritDoc
Visits an InheritDocTree node. This implementation returnsnull
.- Specified by:
visitInheritDoc
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitLink
Visits a LinkTree node. This implementation scans the children in left to right order.- Specified by:
visitLink
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitLiteral
Visits an LiteralTree node. This implementation scans the children in left to right order.- Specified by:
visitLiteral
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitParam
Visits a ParamTree node. This implementation scans the children in left to right order.- Specified by:
visitParam
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitProvides
Visits a ProvidesTree node. This implementation scans the children in left to right order.- Specified by:
visitProvides
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitReference
Visits a ReferenceTree node. This implementation returnsnull
.- Specified by:
visitReference
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitReturn
Visits a ReturnTree node. This implementation scans the children in left to right order.- Specified by:
visitReturn
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitSee
Visits a SeeTree node. This implementation scans the children in left to right order.- Specified by:
visitSee
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitSerial
Visits a SerialTree node. This implementation scans the children in left to right order.- Specified by:
visitSerial
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitSerialData
Visits a SerialDataTree node. This implementation scans the children in left to right order.- Specified by:
visitSerialData
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitSerialField
Visits a SerialFieldTree node. This implementation scans the children in left to right order.- Specified by:
visitSerialField
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitSince
Visits a SinceTree node. This implementation scans the children in left to right order.- Specified by:
visitSince
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitStartElement
Visits a StartElementTree node. This implementation scans the children in left to right order.- Specified by:
visitStartElement
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitSummary
Visits a SummaryTree node. This implementation scans the children in left to right order.- Specified by:
visitSummary
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
- Since:
- 10
-
visitSystemProperty
Visits a SystemPropertyTree node. This implementation returnsnull
.- Specified by:
visitSystemProperty
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
- Since:
- 12
-
visitText
Visits a TextTree node. This implementation returnsnull
.- Specified by:
visitText
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitThrows
Visits a ThrowsTree node. This implementation scans the children in left to right order.- Specified by:
visitThrows
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitUnknownBlockTag
Visits an UnknownBlockTagTree node. This implementation scans the children in left to right order.- Specified by:
visitUnknownBlockTag
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitUnknownInlineTag
Visits an UnknownInlineTagTree node. This implementation scans the children in left to right order.- Specified by:
visitUnknownInlineTag
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitUses
Visits a UsesTree node. This implementation scans the children in left to right order.- Specified by:
visitUses
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitValue
Visits a ValueTree node. This implementation scans the children in left to right order.- Specified by:
visitValue
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitVersion
Visits a VersionTreeTree node. This implementation scans the children in left to right order.- Specified by:
visitVersion
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-
visitOther
Visits an unknown type of DocTree node. This can occur if the set of tags evolves and new kinds of nodes are added to theDocTree
hierarchy. This implementation returnsnull
.- Specified by:
visitOther
in interfaceDocTreeVisitor<R,P>
- Parameters:
node
- the node being visitedp
- a parameter value- Returns:
- the result of scanning
-