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