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

All Superinterfaces:
StatementTree, Tree

@Beta
public interface VariableTree
extends StatementTree

Variable declaration. JLS 8.3, 14.4

   modifiers() type() simpleName() initializer() ;
 

Since:
Java 1.3

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.sonar.plugins.java.api.tree.Tree
Tree.Kind
 
Method Summary
 ExpressionTree initializer()
           
 ModifiersTree modifiers()
           
 IdentifierTree simpleName()
           
 Tree type()
           
 
Methods inherited from interface org.sonar.plugins.java.api.tree.Tree
accept, is
 

Method Detail

modifiers

ModifiersTree modifiers()

type

Tree type()

simpleName

IdentifierTree simpleName()

initializer

@Nullable
ExpressionTree initializer()


Copyright © 2012-2014 SonarSource. All Rights Reserved.