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

Print this page




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  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.tree;
  27 
  28 /**
  29  * A tree node used as the base class for the different kinds of
  30  * statements.
  31  *
  32  * @jls chapter 14
  33  *
  34  * @author Peter von der Ahé
  35  * @author Jonathan Gibbons
  36  * @since 1.6
  37  */
  38 @jdk.Supported
  39 public interface StatementTree extends Tree {}


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  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.tree;
  27 
  28 /**
  29  * A tree node used as the base class for the different kinds of
  30  * statements.
  31  *
  32  * @jls chapter 14
  33  *
  34  * @author Peter von der Ahé
  35  * @author Jonathan Gibbons
  36  * @since 1.6
  37  */
  38 @jdk.Exported
  39 public interface StatementTree extends Tree {}