| |
|
| java.lang.Object com.tc.asm.tree.AbstractInsnNode com.tc.asm.tree.IntInsnNode
IntInsnNode | public class IntInsnNode extends AbstractInsnNode (Code) | | A node that represents an instruction with a single int operand.
author: Eric Bruneton |
Field Summary | |
public int | operand The operand of this instruction. |
Constructor Summary | |
public | IntInsnNode(int opcode, int operand) Constructs a new
IntInsnNode .
Parameters: opcode - the opcode of the instruction to be constructed. |
operand | public int operand(Code) | | The operand of this instruction.
|
IntInsnNode | public IntInsnNode(int opcode, int operand)(Code) | | Constructs a new
IntInsnNode .
Parameters: opcode - the opcode of the instruction to be constructed. Thisopcode must be BIPUSH, SIPUSH or NEWARRAY. Parameters: operand - the operand of the instruction to be constructed. |
getType | public int getType()(Code) | | |
setOpcode | public void setOpcode(int opcode)(Code) | | Sets the opcode of this instruction.
Parameters: opcode - the new instruction opcode. This opcode must be BIPUSH,SIPUSH or NEWARRAY. |
|
|
|