Package jadx.api.plugins.input.data
Interface IMethodRef
-
- All Superinterfaces:
ICustomPayload,IMethodProto
public interface IMethodRef extends IMethodProto, ICustomPayload
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()java.lang.StringgetParentClassType()intgetUniqId()Method unique id (will be used for caching).voidload()Lazy loading for method info, until load() is called only getUniqId() can be used-
Methods inherited from interface jadx.api.plugins.input.data.IMethodProto
getArgTypes, getReturnType
-
-
-
-
Method Detail
-
getUniqId
int getUniqId()
Method unique id (will be used for caching).- Returns:
- 0 if can't calculate good unique identifier (disable caching)
-
load
void load()
Lazy loading for method info, until load() is called only getUniqId() can be used
-
getParentClassType
java.lang.String getParentClassType()
-
getName
java.lang.String getName()
-
-