All Packages Class Hierarchy This Package Previous Next Index
Class espresso.classfile.classgen.MULTIANEWARRAY
java.lang.Object
|
+----espresso.classfile.classgen.Instruction
|
+----espresso.classfile.classgen.CPInstruction
|
+----espresso.classfile.classgen.MULTIANEWARRAY
- public class MULTIANEWARRAY
- extends CPInstruction
MULTIANEWARRAY - Create new mutidimensional array of references
Stack: ..., count1, [count2, ...] -> ..., arrayref
-
dimensions
-
-
MULTIANEWARRAY()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction().
-
MULTIANEWARRAY(int, short)
-
-
dump(DataOutputStream)
- Dump instruction as byte code to stream out.
-
toString()
-
dimensions
private short dimensions
MULTIANEWARRAY
MULTIANEWARRAY()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction(). Not to be used otherwise.
MULTIANEWARRAY
public MULTIANEWARRAY(int index,
short dimensions)
dump
public void dump(DataOutputStream out) throws IOException
- Dump instruction as byte code to stream out.
- Parameters:
- out - Output stream
- Overrides:
- dump in class CPInstruction
toString
public String toString()
- Returns:
- mnemonic for instruction
- Overrides:
- toString in class CPInstruction
All Packages Class Hierarchy This Package Previous Next Index