langtools/src/jdk.compiler/share/classes/com/sun/source/doctree/DocCommentTree.java
changeset 34912 954fa9df99c7
parent 33360 d8ef08003d35
child 34916 16043fc1d90b
equal deleted inserted replaced
34911:44a79114037c 34912:954fa9df99c7
    47     /**
    47     /**
    48      * Returns the entire body of a documentation comment, appearing
    48      * Returns the entire body of a documentation comment, appearing
    49      * before any block tags, including the first sentence.
    49      * before any block tags, including the first sentence.
    50      * @return body of a documentation comment first sentence inclusive
    50      * @return body of a documentation comment first sentence inclusive
    51      *
    51      *
    52      * @since 1.9
    52      * @since 9
    53      */
    53      */
    54     default List<? extends DocTree> getFullBody() {
    54     default List<? extends DocTree> getFullBody() {
    55         ArrayList<DocTree> bodyList = new ArrayList<>();
    55         ArrayList<DocTree> bodyList = new ArrayList<>();
    56         bodyList.addAll(getFirstSentence());
    56         bodyList.addAll(getFirstSentence());
    57         bodyList.addAll(getBody());
    57         bodyList.addAll(getBody());