org.objectweb.asm.tree
Class MultiANewArrayInsnNode
java.lang.Object
org.objectweb.asm.tree.AbstractInsnNode
org.objectweb.asm.tree.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. |
Method Summary |
void |
accept(CodeVisitor cv)
Makes the given code visitor visit this instruction. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
desc
public String desc
- An array type descriptor (see
Type
).
dims
public int dims
- Number of dimensions of the array to allocate.
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.
accept
public void accept(CodeVisitor cv)
- Description copied from class:
AbstractInsnNode
- Makes the given code visitor visit this instruction.
- Specified by:
accept
in class AbstractInsnNode
- Parameters:
cv
- a code visitor.