KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > source > tree > MemberSelectTree


1 /*
2  * @(#)MemberSelectTree.java 1.3 06/07/11
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  *
7  * Use and Distribution is subject to the Java Research License available
8  * at <http://wwws.sun.com/software/communitysource/jrl.html>.
9  */

10
11 package com.sun.source.tree;
12
13 import javax.lang.model.element.Name;
14
15 /**
16  * A tree node for a member access expression.
17  *
18  * For example:
19  * <pre>
20  * <em>expression</em> . <em>identifier</em>
21  * </pre>
22  *
23  * @see "The Java Language Specification, 3rd ed, sections 6.5,
24  * 15.11, and 15.12"
25  *
26  * @author Peter von der Ah&eacute;
27  * @author Jonathan Gibbons
28  * @since 1.6
29  */

30 public interface MemberSelectTree extends ExpressionTree {
31     ExpressionTree getExpression();
32     Name getIdentifier();
33 }
34
Popular Tags