mcimadamore@1143: /* jjg@1209: * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. mcimadamore@1143: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. mcimadamore@1143: * mcimadamore@1143: * This code is free software; you can redistribute it and/or modify it mcimadamore@1143: * under the terms of the GNU General Public License version 2 only, as mcimadamore@1143: * published by the Free Software Foundation. Oracle designates this mcimadamore@1143: * particular file as subject to the "Classpath" exception as provided mcimadamore@1143: * by Oracle in the LICENSE file that accompanied this code. mcimadamore@1143: * mcimadamore@1143: * This code is distributed in the hope that it will be useful, but WITHOUT mcimadamore@1143: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or mcimadamore@1143: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License mcimadamore@1143: * version 2 for more details (a copy is included in the LICENSE file that mcimadamore@1143: * accompanied this code). mcimadamore@1143: * mcimadamore@1143: * You should have received a copy of the GNU General Public License version mcimadamore@1143: * 2 along with this work; if not, write to the Free Software Foundation, mcimadamore@1143: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. mcimadamore@1143: * mcimadamore@1143: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA mcimadamore@1143: * or visit www.oracle.com if you need additional information or have any mcimadamore@1143: * questions. mcimadamore@1143: */ mcimadamore@1143: mcimadamore@1143: package com.sun.source.tree; mcimadamore@1143: mcimadamore@1143: import java.util.List; mcimadamore@1143: mcimadamore@1143: import javax.lang.model.element.Name; mcimadamore@1143: mcimadamore@1143: /** mcimadamore@1143: * A tree node for a member reference expression. mcimadamore@1143: * mcimadamore@1143: * For example: mcimadamore@1143: *
mcimadamore@1143:  *   expression # [ identifier | new ]
mcimadamore@1143:  * 
mcimadamore@1143: * jjg@1209: * @since 1.8 mcimadamore@1143: */ mcimadamore@1143: public interface MemberReferenceTree extends ExpressionTree { mcimadamore@1143: mcimadamore@1143: /** mcimadamore@1143: * There are two kinds of member references: (i) method references and mcimadamore@1143: * (ii) constructor references mcimadamore@1143: */ mcimadamore@1143: public enum ReferenceMode { mcimadamore@1143: /** enum constant for method references */ mcimadamore@1143: INVOKE, mcimadamore@1143: /** enum constant for constructor references */ mcimadamore@1143: NEW mcimadamore@1143: } mcimadamore@1143: ReferenceMode getMode(); mcimadamore@1143: ExpressionTree getQualifierExpression(); mcimadamore@1143: Name getName(); mcimadamore@1143: List getTypeArguments(); mcimadamore@1143: }