You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
685 B
49 lines
685 B
/*
|
|
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package com.sun.source.tree;
|
|
|
|
import javax.lang.model.element.Name;
|
|
|
|
/**
|
|
* A tree node for a member access expression.
|
|
*
|
|
* For example:
|
|
* <pre>
|
|
* <em>expression</em> . <em>identifier</em>
|
|
* </pre>
|
|
*
|
|
* @jls sections 6.5, 15.11,and 15.12
|
|
*
|
|
* @author Peter von der Ahé
|
|
* @author Jonathan Gibbons
|
|
* @since 1.6
|
|
*/
|
|
@jdk.Exported
|
|
public interface MemberSelectTree extends ExpressionTree {
|
|
ExpressionTree getExpression();
|
|
Name getIdentifier();
|
|
}
|