org.codehaus.groovy.ast.expr
Class ArgumentListExpression

java.lang.Object
  |
  +--org.codehaus.groovy.ast.ASTNode
        |
        +--org.codehaus.groovy.ast.expr.Expression
              |
              +--org.codehaus.groovy.ast.expr.TupleExpression
                    |
                    +--org.codehaus.groovy.ast.expr.ArgumentListExpression

public class ArgumentListExpression
extends TupleExpression

Represents one or more arguments being passed into a method

Version:
$Revision: 1.3 $
Author:
James Strachan

Field Summary
static Object[] EMPTY_ARRAY
           
 
Fields inherited from class org.codehaus.groovy.ast.ASTNode
EMPTY_STRING_ARRAY
 
Constructor Summary
ArgumentListExpression()
           
ArgumentListExpression(org.codehaus.groovy.ast.expr.Expression[] expressions)
           
ArgumentListExpression(List expressions)
           
ArgumentListExpression(org.codehaus.groovy.ast.Parameter[] parameters)
           
 
Methods inherited from class org.codehaus.groovy.ast.expr.TupleExpression
addExpression, getExpression, getExpressions, getText, toString, visit
 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
getColumnNumber, getLineNumber, setColumnNumber, setCSTNode, setLineNumber
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

EMPTY_ARRAY

public static final Object[] EMPTY_ARRAY
Constructor Detail

ArgumentListExpression

public ArgumentListExpression()

ArgumentListExpression

public ArgumentListExpression(List expressions)

ArgumentListExpression

public ArgumentListExpression(org.codehaus.groovy.ast.expr.Expression[] expressions)

ArgumentListExpression

public ArgumentListExpression(org.codehaus.groovy.ast.Parameter[] parameters)


Copyright © 2003 The Codehaus. All Rights Reserved.