Home » openjdk-7 » com.sun.source » tree » [javadoc | source]
com.sun.source.tree
public interface: MethodInvocationTree [javadoc | source]

All Implemented Interfaces:
    ExpressionTree

All Known Implementing Classes:
    JCMethodInvocation

A tree node for a method invocation expression. For example:
  identifier ( arguments )

  this . typeArguments identifier ( arguments )
Method from com.sun.source.tree.MethodInvocationTree Summary:
getArguments,   getMethodSelect,   getTypeArguments
Method from com.sun.source.tree.MethodInvocationTree Detail:
 public List<ExpressionTree> getArguments()
 public ExpressionTree getMethodSelect()
 public List<Tree> getTypeArguments()