src/jdk.compiler/share/classes/com/sun/source/util/DocTrees.java
changeset 48028 9e022f580a9d
parent 47216 71c04702a3d5
equal deleted inserted replaced
48027:ddbcfca4d51d 48028:9e022f580a9d
    96     public abstract DocCommentTree getDocCommentTree(Element e);
    96     public abstract DocCommentTree getDocCommentTree(Element e);
    97 
    97 
    98     /**
    98     /**
    99      * Returns the doc comment tree of the given file. The file must be
    99      * Returns the doc comment tree of the given file. The file must be
   100      * an HTML file, in which case the doc comment tree represents the
   100      * an HTML file, in which case the doc comment tree represents the
   101      * contents of the <body> tag, and any enclosing tags are ignored.
   101      * entire contents of the file.
   102      * Returns {@code null} if no doc comment was found.
   102      * Returns {@code null} if no doc comment was found.
   103      * Future releases may support additional file types.
   103      * Future releases may support additional file types.
   104      *
   104      *
   105      * @param fileObject the content container
   105      * @param fileObject the content container
   106      * @return the doc comment tree
   106      * @return the doc comment tree
   107      *
       
   108      * @since 9
   107      * @since 9
   109      */
   108      */
   110     public abstract DocCommentTree getDocCommentTree(FileObject fileObject);
   109     public abstract DocCommentTree getDocCommentTree(FileObject fileObject);
   111 
   110 
   112     /**
   111     /**