org.objectweb.asm.tree
public abstract class AbstractInsnNode extends Object
| Field Summary | |
|---|---|
| protected int | opcode
The opcode of this instruction. |
| Constructor Summary | |
|---|---|
| protected | AbstractInsnNode(int opcode)
Constructs a new AbstractInsnNode object.
|
| Method Summary | |
|---|---|
| abstract void | accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
|
| int | getOpcode()
Returns the opcode of this instruction.
|
AbstractInsnNode object.
Parameters: opcode the opcode of the instruction to be constructed.
Parameters: cv a code visitor.
Returns: the opcode of this instruction.