Package org.codehaus.groovy.ast.expr
Class ArrayExpression
- java.lang.Object
- 
- org.codehaus.groovy.ast.ASTNode
- 
- org.codehaus.groovy.ast.AnnotatedNode
- 
- org.codehaus.groovy.ast.expr.Expression
- 
- org.codehaus.groovy.ast.expr.ArrayExpression
 
 
 
 
- 
- All Implemented Interfaces:
- GroovydocHolder<AnnotatedNode>,- NodeMetaDataHandler
 
 public class ArrayExpression extends Expression Represents an array object construction. One of:- a fixed size array (e.g. new String[3]ornew Integer[2][3])
- an array with an explicit initializer (e.g. new String[]{ "foo", "bar" })
 
- 
- 
Field Summary- 
Fields inherited from class org.codehaus.groovy.ast.expr.ExpressionEMPTY_ARRAY
 - 
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolderDOC_COMMENT
 
- 
 - 
Constructor SummaryConstructors Constructor Description ArrayExpression(ClassNode elementType, List<Expression> initExpressions)Creates an array using an initializer (list of expressions corresponding to array elements)ArrayExpression(ClassNode elementType, List<Expression> initExpressions, List<Expression> sizeExpressions)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddExpression(Expression initExpression)Add another element to the initializer expressionsClassNodegetElementType()ExpressiongetExpression(int i)Get a particular initializer expressionList<Expression>getExpressions()Get the initializer expressionsList<Expression>getSizeExpression()StringgetText()booleanhasInitializer()booleanisDynamic()StringtoString()ExpressiontransformExpression(ExpressionTransformer transformer)Return a copy of the expression calling the transformer on any nested expressionsvoidvisit(GroovyCodeVisitor visitor)- 
Methods inherited from class org.codehaus.groovy.ast.expr.ExpressiongetType, setType, transformExpressions, transformExpressions
 - 
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNodeaddAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
 - 
Methods inherited from class org.codehaus.groovy.ast.ASTNodecopyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandlercopyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
 
- 
 
- 
- 
- 
Constructor Detail- 
ArrayExpressionpublic ArrayExpression(ClassNode elementType, List<Expression> initExpressions, List<Expression> sizeExpressions) 
 - 
ArrayExpressionpublic ArrayExpression(ClassNode elementType, List<Expression> initExpressions) Creates an array using an initializer (list of expressions corresponding to array elements)
 
- 
 - 
Method Detail- 
addExpressionpublic void addExpression(Expression initExpression) Add another element to the initializer expressions
 - 
getExpressionspublic List<Expression> getExpressions() Get the initializer expressions
 - 
visitpublic void visit(GroovyCodeVisitor visitor) 
 - 
isDynamicpublic boolean isDynamic() 
 - 
transformExpressionpublic Expression transformExpression(ExpressionTransformer transformer) Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
- transformExpressionin class- Expression
 
 - 
getExpressionpublic Expression getExpression(int i) Get a particular initializer expression
 - 
getElementTypepublic ClassNode getElementType() 
 - 
hasInitializerpublic boolean hasInitializer() - Returns:
- true if the array expression is defined by an explicit initializer
 
 - 
getSizeExpressionpublic List<Expression> getSizeExpression() - Returns:
- a list with elements corresponding to the array's dimensions
 
 
- 
 
-