- All Superinterfaces:
- ExpressionTree,- Tree
public interface MemberSelectTree extends ExpressionTree
A tree node for a member access expression.
 For example:
 
expression . identifier
- See Java Language Specification:
- 
6.5 Determining the Meaning of a Name
 15.11 Field Access Expressions
 15.12 Method Invocation Expressions
- Since:
- 1.6
- 
Nested Class Summary
- 
Method SummaryModifier and Type Method Description ExpressionTreegetExpression()Returns the expression for which a member is to be selected.NamegetIdentifier()Returns the name of the member to be selected.
- 
Method Details- 
getExpressionExpressionTree getExpression()Returns the expression for which a member is to be selected.- Returns:
- the expression.
 
- 
getIdentifierName getIdentifier()Returns the name of the member to be selected.- Returns:
- the member
 
 
-