soot
Interface SootMethodRef
public interface SootMethodRef
Representation of a reference to a method as it appears in a class file.
Note that the method directly referred to may not actually exist; the
actual target of the reference is determined according to the resolution
procedure in the Java Virtual Machine Specification, 2nd ed, section 5.4.3.3.
declaringClass
SootClass declaringClass()
name
String name()
parameterTypes
List parameterTypes()
returnType
Type returnType()
isStatic
boolean isStatic()
getSubSignature
NumberedString getSubSignature()
getSignature
String getSignature()
parameterType
Type parameterType(int i)
resolve
SootMethod resolve()