org.objectweb.asm.tree
Class AbstractInsnNode
public abstract class AbstractInsnNode
A node that represents a bytecode instruction.
protected int | opcode - The opcode of this instruction.
|
abstract 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 abstract void accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
getOpcode
public int getOpcode()
Returns the opcode of this instruction.
- the opcode of this instruction.