Class MULTIANEWARRAY
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.CPInstruction
org.apache.bcel.generic.MULTIANEWARRAY
- All Implemented Interfaces:
Cloneable, AllocationInstruction, ExceptionThrower, IndexedInstruction, LoadClass, TypedInstruction
public class MULTIANEWARRAY
extends CPInstruction
implements LoadClass, AllocationInstruction, ExceptionThrower
MULTIANEWARRAY - Create new mutidimensional array of references
Stack: ..., count1, [count2, ...] -> ..., arrayref
-
Field Summary
Fields inherited from class CPInstruction
indexFields inherited from class Instruction
length, opcode -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCall corresponding visitor method(s).intAlso works for instructions whose stack effect depends on the constant pool entry they reference.voiddump(DataOutputStream out) Dumps instruction as byte code to stream out.final shortClass<?>[]Gets the exceptions that may be thrown by this instruction.Returns theObjectTypeof the referenced class or interface that may be loaded and resolved.protected voidinitFromFile(ByteSequence bytes, boolean wide) Reads needed data (that is, no. dimension) from file.toString(boolean verbose) Long output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")" "<"< constant pool index>">"toString(ConstantPool cp) Gets the mnemonic for instruction with symbolic references resolved.Methods inherited from class CPInstruction
getIndex, getType, setIndexMethods inherited from class Instruction
copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, toString
-
Constructor Details
-
MULTIANEWARRAY
-
-
Method Details
-
accept
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, that is, the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object.
-
consumeStack
Also works for instructions whose stack effect depends on the constant pool entry they reference.- Overrides:
consumeStackin classInstruction- Parameters:
cpg- the constant pool generator.- Returns:
- Number of words consumed from stack by this instruction.
-
dump
Dumps instruction as byte code to stream out.- Overrides:
dumpin classCPInstruction- Parameters:
out- Output stream.- Throws:
IOException- Thrown when an I/O exception of some sort has occurred.
-
getDimensions
- Returns:
- number of dimensions to be created.
-
getExceptions
Description copied from interface:ExceptionThrowerGets the exceptions that may be thrown by this instruction.- Specified by:
getExceptionsin interfaceExceptionThrower- Returns:
- the exceptions that may be thrown by this instruction.
-
getLoadClassType
Description copied from interface:LoadClassReturns theObjectTypeof the referenced class or interface that may be loaded and resolved.- Specified by:
getLoadClassTypein interfaceLoadClass- Parameters:
cpg- A ConstantPoolGen.- Returns:
- object type that may be loaded or null if a primitive is referenced.
-
initFromFile
Reads needed data (that is, no. dimension) from file.- Overrides:
initFromFilein classCPInstruction- Parameters:
bytes- input stream.wide- wide prefix?.- Throws:
IOException- may be thrown if the implementation needs to read data from the file
-
toString
Description copied from class:CPInstructionLong output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")" "<"< constant pool index>">"- Overrides:
toStringin classCPInstruction- Parameters:
verbose- long/short format switch.- Returns:
- mnemonic for instruction.
-
toString
Description copied from class:InstructionGets the mnemonic for instruction with symbolic references resolved.- Overrides:
toStringin classCPInstruction- Parameters:
cp- the constant pool.- Returns:
- mnemonic for instruction with symbolic references resolved.
-