DocSourcePositions
public interface SourcePositions
Modifier and Type | Method | Description |
---|---|---|
long |
getEndPosition |
Returns the ending position of tree within file. |
long |
getStartPosition |
Returns the starting position of tree within file. |
long getStartPosition(CompilationUnitTree file, Tree tree)
Diagnostic.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) == NOPOS
or
getStartPosition(file, subtree) == NOPOS
file
- CompilationUnit in which to find treetree
- tree for which a position is soughtlong getEndPosition(CompilationUnitTree file, Tree tree)
Diagnostic.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: getEndPosition(file, tree) >= getEndPosition(file, subtree)
or
getEndPosition(file, tree) == NOPOS
or
getEndPosition(file, subtree) == NOPOS
getStartPosition(file, tree) <= getEndPosition(file, tree)
or
getStartPosition(file, tree) == NOPOS
or
getEndPosition(file, tree) == NOPOS
file
- CompilationUnit in which to find treetree
- tree for which a position is sought
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.compiler/com/sun/source/util/SourcePositions.html