Compiler Tree API

com.sun.source.tree
Interface ArrayAccessTree

All Superinterfaces:
ExpressionTree, Tree

public interface ArrayAccessTree
extends ExpressionTree

A tree node for an array access expression. For example:

   expression [ index ]
 

Since:
1.6
See Also:
"The Java Language Specification, 3rd ed, section 15.13"

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
Tree.Kind
 
Method Summary
 ExpressionTree getExpression()
           
 ExpressionTree getIndex()
           
 
Methods inherited from interface com.sun.source.tree.Tree
accept, getKind
 

Method Detail

getExpression

ExpressionTree getExpression()

getIndex

ExpressionTree getIndex()

Compiler Tree API

Submit a bug or feature
Copyright © 2005, 2015, Oracle and/or its affiliates. All rights reserved.