Class ASTArgumentList

java.lang.Object
net.sourceforge.pmd.lang.ast.impl.AbstractNode<B,N>
net.sourceforge.pmd.lang.ast.impl.javacc.AbstractJjtreeNode<net.sourceforge.pmd.lang.java.ast.AbstractJavaNode,JavaNode>
net.sourceforge.pmd.lang.java.ast.ASTList<T>
net.sourceforge.pmd.lang.java.ast.ASTArgumentList
All Implemented Interfaces:
Iterable<ASTExpression>, GenericNode<JavaNode>, JjtreeNode<JavaNode>, Node, TextAvailableNode, JavaNode, Reportable

public final class ASTArgumentList extends ASTList<T>
The argument list of a method, constructor call, or explicit constructor invocation.

 ArgumentList ::= "(" ( Expression ( "," Expression)* )? ")"