org.objectweb.asm.tree
public class IntInsnNode extends AbstractInsnNode
Field Summary | |
---|---|
int | operand
The operand of this instruction. |
Constructor Summary | |
---|---|
IntInsnNode(int opcode, int operand)
Constructs a new IntInsnNode.
|
Method Summary | |
---|---|
void | accept(MethodVisitor mv) |
AbstractInsnNode | clone(Map labels) |
int | getType() |
void | setOpcode(int opcode)
Sets the opcode of this instruction.
|
Parameters: 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.
Parameters: opcode the new instruction opcode. This opcode must be BIPUSH, SIPUSH or NEWARRAY.