org.objectweb.asm.tree

Class MultiANewArrayInsnNode


public class MultiANewArrayInsnNode
extends AbstractInsnNode

A node that represents a MULTIANEWARRAY instruction.
Author:
Eric Bruneton

Field Summary

String
desc
An array type descriptor (see Type).
int
dims
Number of dimensions of the array to allocate.

Fields inherited from class org.objectweb.asm.tree.AbstractInsnNode

opcode

Constructor Summary

MultiANewArrayInsnNode(String desc, int dims)
Constructs a new MultiANewArrayInsnNode object.

Method Summary

void
accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.

Methods inherited from class org.objectweb.asm.tree.AbstractInsnNode

accept, getOpcode

Field Details

desc

public String desc

dims

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

Constructor Details

MultiANewArrayInsnNode

public MultiANewArrayInsnNode(String desc,
                              int dims)
Parameters:
desc - an array type descriptor (see Type).
dims - number of dimensions of the array to allocate.

Method Details

accept

public void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
Overrides:
accept in interface AbstractInsnNode
Parameters:
cv - a code visitor.