1 /*2 * @(#)MethodInvocationTree.java 1.2 05/11/173 *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 available8 * at <http://wwws.sun.com/software/communitysource/jrl.html>.9 */10 11 package com.sun.source.tree;12 13 import java.util.List ;14 15 /**16 * A tree node for a method invocation expression.17 *18 * For example:19 * <pre>20 * <em>identifier</em> ( <em>arguments</em> )21 *22 * this . <em>typeArguments</em> <em>identifier</em> ( <em>arguments</em> )23 * </pre>24 *25 * @see "The Java Language Specification, 3rd ed, section 15.12"26 *27 * @author Peter von der Ahé28 * @author Jonathan Gibbons29 * @since 1.630 */31 public interface MethodInvocationTree extends ExpressionTree {32 List <? extends Tree> getTypeArguments();33 ExpressionTree getMethodSelect();34 List <? extends ExpressionTree> getArguments();35 }36