org.objectweb.asm.tree
Class AbstractInsnNode
public abstract class AbstractInsnNode
A node that represents a bytecode instruction.
- Eric Bruneton
protected int | opcode - The opcode of this instruction.
|
void | accept(CodeVisitor cv) - Makes the given code visitor visit this instruction.
|
int | getOpcode() - Returns the opcode of this instruction.
|
opcode
protected int opcode
The opcode of this instruction.
AbstractInsnNode
protected AbstractInsnNode(int opcode)
opcode
- the opcode of the instruction to be constructed.
accept
public void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
cv
- a code visitor.
getOpcode
public int getOpcode()
Returns the opcode of this instruction.
- the opcode of this instruction.