Interface LabeledStatementTree

All Superinterfaces:
StatementTree, Tree

public interface LabeledStatementTree extends StatementTree
A tree node for a labeled statement. For example:
  label : statement
See Java Language Specification:
14.7 Labeled Statements
Since:
1.6
  • Nested Class Summary

    Nested classes/interfaces declared in interface Tree

    Tree.Kind
    Modifier and Type
    Interface
    Description
    static enum 
    Enumerates all kinds of trees.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the label.
    Returns the statement that is labeled.

    Methods declared in interface Tree

    accept, getKind
    Modifier and Type
    Method
    Description
    <R,D> R
    accept(TreeVisitor<R,D> visitor, D data)
    Accept method used to implement the visitor pattern.
    Returns the kind of this tree.
  • Method Details

    • getLabel

      Name getLabel()
      Returns the label.
      Returns:
      the label
    • getStatement

      StatementTree getStatement()
      Returns the statement that is labeled.
      Returns:
      the statement