src/share/classes/com/sun/source/doctree/ThrowsTree.java

Print this page




  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 @exception or @throws block tag.
  33  * @exception is a synonym for @throws.
  34  *
  35  * <p>
  36  * &#064;exception class-name description <br>
  37  * &#064;throws class-name description
  38  *
  39  * @since 1.8
  40  */
  41 @jdk.Supported
  42 public interface ThrowsTree extends BlockTagTree {
  43     ReferenceTree getExceptionName();
  44     List<? extends DocTree> getDescription();
  45 }


  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 @exception or &#064;throws block tag.
  33  * &#064;exception is a synonym for &#064;throws.
  34  *
  35  * <p>
  36  * &#064;exception class-name description <br>
  37  * &#064;throws class-name description
  38  *
  39  * @since 1.8
  40  */
  41 @jdk.Exported
  42 public interface ThrowsTree extends BlockTagTree {
  43     ReferenceTree getExceptionName();
  44     List<? extends DocTree> getDescription();
  45 }