FileDocCategorySizeDatePackage
MultiANewArrayInsnNode.javaAPI DocGlassfish v2 API2700Thu Mar 02 11:51:16 GMT 2006oracle.toplink.libraries.asm.tree

MultiANewArrayInsnNode

public class MultiANewArrayInsnNode extends AbstractInsnNode
A node that represents a MULTIANEWARRAY instruction.
author
Eric Bruneton

Fields Summary
public String
desc
An array type descriptor (see {@link oracle.toplink.libraries.asm.Type Type}).
public int
dims
Number of dimensions of the array to allocate.
Constructors Summary
public MultiANewArrayInsnNode(String desc, int dims)
Constructs a new {@link MultiANewArrayInsnNode MultiANewArrayInsnNode} object.

param
desc an array type descriptor (see {@link oracle.toplink.libraries.asm.Type Type}).
param
dims number of dimensions of the array to allocate.

    super(Constants.MULTIANEWARRAY);
    this.desc = desc;
    this.dims = dims;
  
Methods Summary
public voidaccept(oracle.toplink.libraries.asm.CodeVisitor cv)

    cv.visitMultiANewArrayInsn(desc, dims);