Oracle Fusion Middleware Java API Reference for Oracle TopLink (Deprecated)
11g Release 1 (11.1.1)

B32476-04

oracle.toplink.libraries.asm.tree
Class MultiANewArrayInsnNode

java.lang.Object
  extended by oracle.toplink.libraries.asm.tree.AbstractInsnNode
      extended by oracle.toplink.libraries.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.
 
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 oracle.toplink.libraries.asm.tree.AbstractInsnNode
getOpcode
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

desc

public java.lang.String desc
Description copied from class: MultiANewArrayInsnNode
An array type descriptor (see Type).


dims

public int dims
Description copied from class: MultiANewArrayInsnNode
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: oracle.toplink.libraries.asm.tree.AbstractInsnNode
Makes the given code visitor visit this instruction.

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

Copyright © 1998, 2012, Oracle. All Rights Reserved.