Package com.comphenix.protocol.reflect
Class ClassAnalyser.AsmMethod
java.lang.Object
com.comphenix.protocol.reflect.ClassAnalyser.AsmMethod
- Enclosing class:
- ClassAnalyser
Represents a method in ASM.
Keep in mind that this may also invoke a constructor.
- Author:
- Kristian
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionAsmMethod(ClassAnalyser.AsmMethod.AsmOpcodes opcode, String ownerClass, String methodName, String signature) -
Method Summary
Modifier and TypeMethodDescriptionRetrieve the opcode used to invoke this method or constructor.Class<?>Retrieve the associated owner class.
-
Constructor Details
-
AsmMethod
public AsmMethod(ClassAnalyser.AsmMethod.AsmOpcodes opcode, String ownerClass, String methodName, String signature)
-
-
Method Details
-
getOwnerName
-
getOpcode
Retrieve the opcode used to invoke this method or constructor.- Returns:
- The opcode.
-
getOwnerClass
Retrieve the associated owner class.- Returns:
- The owner class.
- Throws:
ClassNotFoundException- If the class was not found
-
getMethodName
-
getSignature
-