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 Type).
intdims
Number of dimensions of the array to allocate.
Constructor Summary
MultiANewArrayInsnNode(String desc, int dims)
Constructs a new MultiANewArrayInsnNode.
Method Summary
voidaccept(MethodVisitor mv)
AbstractInsnNodeclone(Map labels)
intgetType()

Field Detail

desc

public String desc
An array type descriptor (see 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 MultiANewArrayInsnNode.

Parameters: desc an array type descriptor (see Type). dims number of dimensions of the array to allocate.

Method Detail

accept

public void accept(MethodVisitor mv)

clone

public AbstractInsnNode clone(Map labels)

getType

public int getType()