src/share/classes/com/sun/source/tree/EmptyStatementTree.java

Print this page




  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.source.tree;
  27 
  28 /**
  29  * A tree node for an empty (skip) statement.
  30  *
  31  * For example:
  32  * <pre>
  33  *    ;
  34  * </pre>
  35  *
  36  * @jls section 14.6
  37  *
  38  * @author Peter von der Ah&eacute;
  39  * @author Jonathan Gibbons
  40  * @since 1.6
  41  */
  42 @jdk.Supported
  43 public interface EmptyStatementTree extends StatementTree {}


  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.source.tree;
  27 
  28 /**
  29  * A tree node for an empty (skip) statement.
  30  *
  31  * For example:
  32  * <pre>
  33  *    ;
  34  * </pre>
  35  *
  36  * @jls section 14.6
  37  *
  38  * @author Peter von der Ah&eacute;
  39  * @author Jonathan Gibbons
  40  * @since 1.6
  41  */
  42 @jdk.Exported
  43 public interface EmptyStatementTree extends StatementTree {}