com.sun.source.tree
Interface BlockTree
- All Superinterfaces:
- StatementTree, Tree
public interface BlockTree
- extends StatementTree
A tree node for a statement block.
For example:
{ }
{ statements }
static { statements }
- Since:
- 1.6
- See Also:
- "The Java Language Specification, 3rd ed, section 14.2"
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree |
Tree.Kind |
isStatic
boolean isStatic()
getStatements
List<? extends StatementTree> getStatements()
Copyright © 2005, 2012, Oracle and/or its affiliates. All rights reserved.