AbstractInsnNodepublic abstract class AbstractInsnNode extends Object A node that represents a bytecode instruction. |
Fields Summary |
---|
protected int | opcodeThe opcode of this instruction. |
Constructors Summary |
---|
protected AbstractInsnNode(int opcode)Constructs a new {@link AbstractInsnNode AbstractInsnNode} object.
this.opcode = opcode;
|
|