Uses of Class
org.eclipse.jdt.internal.compiler.ast.ArrayAllocationExpression

Packages that use ArrayAllocationExpression
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.codegen   
org.eclipse.jdt.internal.compiler.problem   
 

Uses of ArrayAllocationExpression in org.eclipse.jdt.internal.compiler
 

Methods in org.eclipse.jdt.internal.compiler with parameters of type ArrayAllocationExpression
 void ASTVisitor.endVisit(ArrayAllocationExpression arrayAllocationExpression, BlockScope scope)
           
 boolean ASTVisitor.visit(ArrayAllocationExpression arrayAllocationExpression, BlockScope scope)
           
 

Uses of ArrayAllocationExpression in org.eclipse.jdt.internal.compiler.ast
 

Methods in org.eclipse.jdt.internal.compiler.ast with parameters of type ArrayAllocationExpression
 void ArrayInitializer.generateCode(TypeReference typeReference, ArrayAllocationExpression allocationExpression, BlockScope currentScope, CodeStream codeStream, boolean valueRequired)
          Code generation for a array initializer
 

Uses of ArrayAllocationExpression in org.eclipse.jdt.internal.compiler.codegen
 

Methods in org.eclipse.jdt.internal.compiler.codegen with parameters of type ArrayAllocationExpression
 void TypeAnnotationCodeStream.multianewarray(TypeReference typeReference, TypeBinding typeBinding, int dimensions, ArrayAllocationExpression allocationExpression)
           
 void CodeStream.multianewarray(TypeReference typeReference, TypeBinding typeBinding, int dimensions, ArrayAllocationExpression allocationExpression)
           
 void TypeAnnotationCodeStream.newArray(TypeReference typeReference, ArrayAllocationExpression allocationExpression, ArrayBinding arrayBinding)
           
 void CodeStream.newArray(TypeReference typeReference, ArrayAllocationExpression allocationExpression, ArrayBinding arrayBinding)
           
 

Uses of ArrayAllocationExpression in org.eclipse.jdt.internal.compiler.problem
 

Methods in org.eclipse.jdt.internal.compiler.problem with parameters of type ArrayAllocationExpression
 void ProblemReporter.cannotDefineDimensionsAndInitializer(ArrayAllocationExpression expresssion)
           
 void ProblemReporter.incorrectLocationForNonEmptyDimension(ArrayAllocationExpression expression, int index)
           
 void ProblemReporter.mustDefineDimensionsOrInitializer(ArrayAllocationExpression expression)