src/jdk.compiler/share/classes/com/sun/source/doctree/VersionTree.java

Print this page




  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.source.doctree;
  27 
  28 import java.util.List;
  29 
  30 /**
  31  *
  32  * A tree node for an @version block tag.
  33  *
  34  * <p>
  35  * @version version-text
  36  *
  37  * @since 1.8
  38  */
  39 @jdk.Exported
  40 public interface VersionTree extends BlockTagTree {
  41     /**
  42      * Returns the body of the tag.
  43      * @return the body
  44      */
  45     List<? extends DocTree> getBody();
  46 }


  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.source.doctree;
  27 
  28 import java.util.List;
  29 
  30 /**
  31  *
  32  * A tree node for an @version block tag.
  33  *
  34  * <p>
  35  * @version version-text
  36  *
  37  * @since 1.8
  38  */

  39 public interface VersionTree extends BlockTagTree {
  40     /**
  41      * Returns the body of the tag.
  42      * @return the body
  43      */
  44     List<? extends DocTree> getBody();
  45 }