Class TreePath
java.lang.Object
com.sun.source.util.TreePath
- 
Constructor SummaryConstructorsConstructorDescriptionTreePath(CompilationUnitTree node) Creates a TreePath for a root node.Creates a TreePath for a child node.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the compilation unit associated with this path.getLeaf()Returns the leaf node for this path.Returns the path for the enclosing node, ornullif there is no enclosing node.static TreePathgetPath(CompilationUnitTree unit, Tree target) Returns a tree path for a tree node within a compilation unit, ornullif the node is not found.static TreePathReturns a tree path for a tree node within a subtree identified by a TreePath object.iterator()Iterates from leaves to root.Methods declared in class Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface IterableforEach, spliterator
- 
Constructor Details- 
TreePathCreates a TreePath for a root node.- Parameters:
- node- the root node
 
- 
TreePath
 
- 
- 
Method Details- 
getPathReturns a tree path for a tree node within a compilation unit, ornullif the node is not found.- Parameters:
- unit- the compilation unit to search
- target- the node to locate
- Returns:
- the tree path
 
- 
getPathReturns a tree path for a tree node within a subtree identified by a TreePath object. Returnsnullif the node is not found.- Parameters:
- path- the path in which to search
- target- the node to locate
- Returns:
- the tree path of the target node
 
- 
getCompilationUnitReturns the compilation unit associated with this path.- Returns:
- the compilation unit
 
- 
getLeaf
- 
getParentPathReturns the path for the enclosing node, ornullif there is no enclosing node.- Returns:
- the path for the enclosing node
 
- 
iterator
 
-