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
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.Expression
EMPTY_ARRAY
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT
-
Constructor Summary
ConstructorDescriptionArrayExpression
(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 Summary
Modifier and TypeMethodDescriptionvoid
addExpression
(Expression initExpression) Add another element to the initializer expressionsgetExpression
(int i) Get a particular initializer expressionGet the initializer expressionsgetText()
boolean
boolean
toString()
transformExpression
(ExpressionTransformer transformer) Return a copy of the expression calling the transformer on any nested expressionsvoid
visit
(GroovyCodeVisitor visitor) Methods inherited from class org.codehaus.groovy.ast.expr.Expression
getType, setType, transformExpressions, transformExpressions
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
Constructor Details
-
ArrayExpression
public ArrayExpression(ClassNode elementType, List<Expression> initExpressions, List<Expression> sizeExpressions) -
ArrayExpression
Creates an array using an initializer (list of expressions corresponding to array elements)
-
-
Method Details
-
addExpression
Add another element to the initializer expressions -
getExpressions
Get the initializer expressions -
visit
-
isDynamic
public boolean isDynamic() -
transformExpression
Description copied from class:Expression
Return a copy of the expression calling the transformer on any nested expressions- Specified by:
transformExpression
in classExpression
-
getExpression
Get a particular initializer expression -
getElementType
-
getText
-
hasInitializer
public boolean hasInitializer()- Returns:
- true if the array expression is defined by an explicit initializer
-
getSizeExpression
- Returns:
- a list with elements corresponding to the array's dimensions
-
toString
-