Interface BlockTree

All Superinterfaces:
StatementTree, Tree

public interface BlockTree extends StatementTree
A tree node for a statement block. For example:
   { }

   { statements }
 
Since:
9
  • Method Details

    • getStatements

      List<? extends StatementTree> getStatements()
      Returns the list of statements in this block.
      Returns:
      the list of statements in this block