org.objectweb.asm.tree

Class MultiANewArrayInsnNode

public class MultiANewArrayInsnNode extends AbstractInsnNode

A node that represents a MULTIANEWARRAY instruction.

Author: Eric Bruneton

Field Summary
Stringdesc
An array type descriptor (see {@link org.objectweb.asm.Type Type}).
intdims
Number of dimensions of the array to allocate.
Constructor Summary
MultiANewArrayInsnNode(String desc, int dims)
Constructs a new {@link MultiANewArrayInsnNode MultiANewArrayInsnNode} object.
Method Summary
voidaccept(CodeVisitor cv)

Field Detail

desc

public String desc
An array type descriptor (see {@link org.objectweb.asm.Type Type}).

dims

public int dims
Number of dimensions of the array to allocate.

Constructor Detail

MultiANewArrayInsnNode

public MultiANewArrayInsnNode(String desc, int dims)
Constructs a new {@link MultiANewArrayInsnNode MultiANewArrayInsnNode} object.

Parameters: desc an array type descriptor (see {@link org.objectweb.asm.Type Type}). dims number of dimensions of the array to allocate.

Method Detail

accept

public void accept(CodeVisitor cv)