public class TypeInsnNode extends AbstractInsnNode
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
desc
The operand of this instruction.
|
opcode| Constructor and Description |
|---|
TypeInsnNode(int opcode,
java.lang.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.
|
getOpcodepublic java.lang.String desc
Type).public TypeInsnNode(int opcode,
java.lang.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)
AbstractInsnNodeaccept in class AbstractInsnNodecv - a code visitor.