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 object.
Method Summary
voidaccept(CodeVisitor cv)

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 object.

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

Method Detail

accept

public void accept(CodeVisitor cv)