Interface SourcePositions
- All Known Subinterfaces:
DocSourcePositions
- Since:
- 1.6
-
Method Summary
Modifier and TypeMethodDescriptiondefault longgetEndPosition(CompilationUnitTree file, Tree tree) Deprecated, for removal: This API element is subject to removal in a future version.longgetEndPosition(Tree tree) Returns the ending position of the givenTree. If the ending position is not available, returnsDiagnostic.NOPOS.default longgetStartPosition(CompilationUnitTree file, Tree tree) Deprecated, for removal: This API element is subject to removal in a future version.usegetStartPosition(Tree)insteadlonggetStartPosition(Tree tree) Returns the starting position of the givenTree, or if the starting position is not available, returnsDiagnostic.NOPOS.
-
Method Details
-
getStartPosition
@Deprecated(since="27", forRemoval=true) default long getStartPosition(CompilationUnitTree file, Tree tree) Deprecated, for removal: This API element is subject to removal in a future version.usegetStartPosition(Tree)insteadReturns the starting position of tree within file. If tree is not found within file, or if the starting position is not available, returnsDiagnostic.NOPOS. The returned position must be at the start of the yield of this tree, that is for any sub-tree of this tree, the following must hold:getStartPosition(file, tree) <= getStartPosition(file, subtree)or
getStartPosition(file, tree) == NOPOSor
getStartPosition(file, subtree) == NOPOS- Parameters:
file- CompilationUnit in which to find treetree- tree for which a position is sought- Returns:
- the start position of tree
-
getStartPosition
Returns the starting position of the givenTree, or if the starting position is not available, returnsDiagnostic.NOPOS.The returned position must be at the start of the yield of this tree, that is for any sub-tree of this tree, the following must hold:
getStartPosition(tree) <= getStartPosition(subtree)or
getStartPosition(tree) == NOPOSor
getStartPosition(subtree) == NOPOS- Parameters:
tree- tree for which a position is sought- Returns:
- the starting position of the given
Tree, or if the starting position is not available, returnsDiagnostic.NOPOS - Since:
- 27
-
getEndPosition
@Deprecated(since="27", forRemoval=true) default long getEndPosition(CompilationUnitTree file, Tree tree) Deprecated, for removal: This API element is subject to removal in a future version.usegetEndPosition(Tree)insteadReturns the ending position of tree within file. If tree is not found within file, or if the ending position is not available, returnsDiagnostic.NOPOS. The returned position must be at the end of the yield of this tree, that is for any sub-tree of this tree, the following must hold:
In addition, the following must hold:getEndPosition(file, tree) >= getEndPosition(file, subtree)or
getEndPosition(file, tree) == NOPOSor
getEndPosition(file, subtree) == NOPOSgetStartPosition(file, tree) <= getEndPosition(file, tree)or
getStartPosition(file, tree) == NOPOSor
getEndPosition(file, tree) == NOPOS- Parameters:
file- CompilationUnit in which to find treetree- tree for which a position is sought- Returns:
- the end position of tree
-
getEndPosition
Returns the ending position of the givenTree. If the ending position is not available, returnsDiagnostic.NOPOS.The returned position must be at the end of the yield of this tree, that is for any sub-tree of this tree, the following must hold:
In addition, the following must hold:getEndPosition(tree) >= getEndPosition(subtree)or
getEndPosition(tree) == NOPOSor
getEndPosition(subtree) == NOPOSgetStartPosition(tree) <= getEndPosition(tree)or
getStartPosition(tree) == NOPOSor
getEndPosition(tree) == NOPOS- Parameters:
tree- tree for which a position is sought- Returns:
- the ending position of the given
Tree. If the ending position is not available, returnsDiagnostic.NOPOS - Since:
- 27
-
getEndPosition(Tree)instead