- 
- All Superinterfaces:
- ExpressionTree,- Tree
 
 public interface MemberSelectTree extends ExpressionTree A tree node for a member access expression. For example:expression . identifier - Since:
- 1.6
- See The Java™ Language Specification:
- sections 6.5, 15.11,and 15.12
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier 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 Detail- 
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
 
 
- 
 
-