Path: blob/master/src/jdk.compiler/share/classes/com/sun/source/util/DocSourcePositions.java
41175 views
/*1* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package com.sun.source.util;2627import com.sun.source.doctree.DocCommentTree;28import com.sun.source.doctree.DocTree;29import com.sun.source.tree.CompilationUnitTree;3031/**32* Provides methods to obtain the position of a DocTree within a javadoc comment.33* A position is defined as a simple character offset from the start of a34* CompilationUnit where the first character is at offset 0.35*36* @since 1.837*/38public interface DocSourcePositions extends SourcePositions {3940/**41* Returns the starting position of the tree within the comment within the file. If tree is not found within42* file, or if the starting position is not available,43* returns {@link javax.tools.Diagnostic#NOPOS}.44* The given tree should be under the given comment tree, and the given documentation45* comment tree should be returned from a {@link DocTrees#getDocCommentTree(com.sun.source.util.TreePath) }46* for a tree under the given file.47* The returned position must be at the start of the yield of this tree, that48* is for any sub-tree of this tree, the following must hold:49*50* <p>51* {@code tree.getStartPosition() <= subtree.getStartPosition()} or <br>52* {@code tree.getStartPosition() == NOPOS} or <br>53* {@code subtree.getStartPosition() == NOPOS}54* </p>55*56* @param file compilation unit in which to find tree57* @param comment the comment tree that encloses the tree for which the58* position is being sought59* @param tree tree for which a position is sought60* @return the start position of tree61*/62long getStartPosition(CompilationUnitTree file, DocCommentTree comment, DocTree tree);6364/**65* Returns the ending position of the tree within the comment within the file. If tree is not found within66* file, or if the ending position is not available,67* returns {@link javax.tools.Diagnostic#NOPOS}.68* The given tree should be under the given comment tree, and the given documentation69* comment tree should be returned from a {@link DocTrees#getDocCommentTree(com.sun.source.util.TreePath) }70* for a tree under the given file.71* The returned position must be at the end of the yield of this tree,72* that is for any sub-tree of this tree, the following must hold:73*74* <p>75* {@code tree.getEndPosition() >= subtree.getEndPosition()} or <br>76* {@code tree.getEndPosition() == NOPOS} or <br>77* {@code subtree.getEndPosition() == NOPOS}78* </p>79*80* In addition, the following must hold:81*82* <p>83* {@code tree.getStartPosition() <= tree.getEndPosition()} or <br>84* {@code tree.getStartPosition() == NOPOS} or <br>85* {@code tree.getEndPosition() == NOPOS}86* </p>87*88* @param file compilation unit in which to find tree89* @param comment the comment tree that encloses the tree for which the90* position is being sought91* @param tree tree for which a position is sought92* @return the end position of tree93*/94long getEndPosition(CompilationUnitTree file, DocCommentTree comment, DocTree tree);9596}979899