public class IntInsnNode extends AbstractInsnNode
| Modifier and Type | Field and Description |
|---|---|
int |
operand
The operand of this instruction.
|
opcode| Constructor and Description |
|---|
IntInsnNode(int opcode,
int operand)
Constructs a new
IntInsnNode 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 IntInsnNode(int opcode,
int operand)
IntInsnNode object.opcode - the opcode of the instruction to be constructed. This opcode
must be BIPUSH, SIPUSH or NEWARRAY.operand - the operand of the instruction to be constructed.public void setOpcode(int opcode)
opcode - the new instruction opcode. This opcode must be BIPUSH,
SIPUSH or NEWARRAY.public void accept(CodeVisitor cv)
AbstractInsnNodeaccept in class AbstractInsnNodecv - a code visitor.