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

All Superinterfaces:
ExpressionTree, Tree

@Beta
public interface NewArrayTree
extends ExpressionTree

Array creation expression. JLS 15.10

   new type() dimensions() initializers()
 

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<ExpressionTree> dimensions()
           
 List<ExpressionTree> initializers()
           
 Tree type()
           
 
Methods inherited from interface org.sonar.plugins.java.api.tree.Tree
accept, is
 

Method Detail

type

Tree type()

dimensions

List<ExpressionTree> dimensions()

initializers

List<ExpressionTree> initializers()


Copyright © 2012-2014 SonarSource. All Rights Reserved.