org.sonar.plugins.java.api.tree
Interface BlockTree

All Superinterfaces:
StatementTree, Tree

@Beta
public interface BlockTree
extends StatementTree

Block.

JLS 8.6. Instance Initializer (Tree.Kind.INITIALIZER):

   { body() }
 
JLS 8.7. Static Initializer (Tree.Kind.STATIC_INITIALIZER):
   static { body() }
 
JLS 14.2 Block (Tree.Kind.BLOCK):
   { body() }
 

Since:
Java 1.3

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.sonar.plugins.java.api.tree.Tree
Tree.Kind
 
Method Summary
 List<StatementTree> body()
           
 
Methods inherited from interface org.sonar.plugins.java.api.tree.Tree
accept, is
 

Method Detail

body

List<StatementTree> body()


Copyright © 2012-2014 SonarSource. All Rights Reserved.