-
- All Superinterfaces:
StatementTree
,Tree
public interface LabeledStatementTree extends StatementTree
A tree node for a labeled statement. For example:label : statement
- Since:
- 1.6
- See The Java™ Language Specification:
- section 14.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Name
getLabel()
Returns the label.StatementTree
getStatement()
Returns the statement that is labeled.
-
-
-
Method Detail
-
getLabel
Name getLabel()
Returns the label.- Returns:
- the label
-
getStatement
StatementTree getStatement()
Returns the statement that is labeled.- Returns:
- the statement
-
-