| java.lang.Object com.tc.asm.tree.AbstractInsnNode com.tc.asm.tree.MethodInsnNode
MethodInsnNode | public class MethodInsnNode extends AbstractInsnNode (Code) | | A node that represents a method instruction. A method instruction is an
instruction that invokes a method.
author: Eric Bruneton |
MethodInsnNode | public MethodInsnNode(int opcode, String owner, String name, String desc)(Code) | | Constructs a new
MethodInsnNode .
Parameters: opcode - the opcode of the type instruction to be constructed. Thisopcode must be INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC orINVOKEINTERFACE. Parameters: owner - the internal name of the method's owner class (seecom.tc.asm.Type.getInternalName getInternalName). Parameters: name - the method's name. Parameters: desc - the method's descriptor (see com.tc.asm.Type). |
getType | public int getType()(Code) | | |
setOpcode | public void setOpcode(int opcode)(Code) | | Sets the opcode of this instruction.
Parameters: opcode - the new instruction opcode. This opcode must beINVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE. |
|
|