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 Link icon

    Nested classes/interfaces declared in interface Tree Link icon

    Tree.Kind
  • Method Summary Link icon

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

    Methods declared in interface Tree Link icon

    accept, getKind
  • Method Details Link icon

    • getLabel Link icon

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

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