Package org.apache.bcel.generic
Class ANEWARRAY
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.CPInstruction
org.apache.bcel.generic.ANEWARRAY
- All Implemented Interfaces:
Cloneable,AllocationInstruction,ExceptionThrower,IndexedInstruction,LoadClass,StackConsumer,StackProducer,TypedInstruction
public class ANEWARRAY
extends CPInstruction
implements LoadClass, AllocationInstruction, ExceptionThrower, StackConsumer, StackProducer
ANEWARRAY - Create new array of references
Stack: ..., count -> ..., arrayref
-
Field Summary
Fields inherited from class org.apache.bcel.generic.CPInstruction
indexFields inherited from class org.apache.bcel.generic.Instruction
length, opcode -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCall corresponding visitor method(s).Class<?>[]Returns the ObjectType of the referenced class or interface that may be loaded and resolved.Methods inherited from class org.apache.bcel.generic.CPInstruction
dump, getIndex, getType, initFromFile, setIndex, toString, toStringMethods inherited from class org.apache.bcel.generic.Instruction
consumeStack, copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.bcel.generic.StackConsumer
consumeStackMethods inherited from interface org.apache.bcel.generic.StackProducer
produceStack
-
Constructor Details
-
ANEWARRAY
public ANEWARRAY(int index)
-
-
Method Details
-
getExceptions
- Specified by:
getExceptionsin interfaceExceptionThrower
-
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, i.e., the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object
-
getLoadClassType
Description copied from interface:LoadClassReturns the ObjectType of the referenced class or interface that may be loaded and resolved.- Specified by:
getLoadClassTypein interfaceLoadClass- Returns:
- object type that may be loaded or null if a primitive is referenced
-