org.logicalcobwebs.asm.tree
Class MultiANewArrayInsnNode

java.lang.Object
  extended by org.logicalcobwebs.asm.tree.AbstractInsnNode
      extended by org.logicalcobwebs.asm.tree.MultiANewArrayInsnNode

public class MultiANewArrayInsnNode
extends AbstractInsnNode

A node that represents a MULTIANEWARRAY instruction.


Field Summary
 java.lang.String desc
          An array type descriptor (see Type).
 int dims
          Number of dimensions of the array to allocate.
 
Fields inherited from class org.logicalcobwebs.asm.tree.AbstractInsnNode
opcode
 
Constructor Summary
MultiANewArrayInsnNode(java.lang.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.logicalcobwebs.asm.tree.AbstractInsnNode
getOpcode
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

desc

public java.lang.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(java.lang.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)
Description copied from class: AbstractInsnNode
Makes the given code visitor visit this instruction.

Specified by:
accept in class AbstractInsnNode
Parameters:
cv - a code visitor.