public class TypeInsnNode extends AbstractInsnNode
Modifier and Type | Field and Description |
---|---|
String |
desc
The operand of this instruction.
|
opcode
Constructor and Description |
---|
TypeInsnNode(int opcode,
String desc)
Constructs a new
TypeInsnNode object. |
Modifier and Type | Method and Description |
---|---|
void |
accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
|
void |
setOpcode(int opcode)
Sets the opcode of this instruction.
|
getOpcode
public TypeInsnNode(int opcode, String desc)
TypeInsnNode
object.opcode
- the opcode of the type instruction to be constructed. This
opcode must be NEW, ANEWARRAY, CHECKCAST or INSTANCEOF.desc
- the operand of the instruction to be constructed. This operand
is a type descriptor (see Type
).public void setOpcode(int opcode)
opcode
- the new instruction opcode. This opcode must be
NEW, ANEWARRAY, CHECKCAST or INSTANCEOF.public void accept(CodeVisitor cv)
AbstractInsnNode
accept
in class AbstractInsnNode
cv
- a code visitor.