MethodInsnNodepublic class MethodInsnNode extends AbstractInsnNode A node that represents a method instruction. A method instruction is an
instruction that invokes a method. |
Fields Summary |
---|
public String | ownerThe internal name of the method's owner class (see {@link
oracle.toplink.libraries.asm.Type#getInternalName() getInternalName}). | public String | nameThe method's name. | public String | descThe method's descriptor (see {@link oracle.toplink.libraries.asm.Type Type}). |
Constructors Summary |
---|
public MethodInsnNode(int opcode, String owner, String name, String desc)Constructs a new {@link MethodInsnNode MethodInsnNode} object.
super(opcode);
this.owner = owner;
this.name = name;
this.desc = desc;
|
Methods Summary |
---|
public void | accept(oracle.toplink.libraries.asm.CodeVisitor cv)
cv.visitMethodInsn(opcode, owner, name, desc);
| public void | setOpcode(int opcode)Sets the opcode of this instruction.
this.opcode = opcode;
|
|