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

Field Detail

desc

public String desc
An array type descriptor (see {@link org.objectweb.asm.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}.

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

Method Detail

accept

public void accept(MethodVisitor mv)

getType

public int getType()