Package proguard.classfile
Interface MethodInfo
-
- All Known Implementing Classes:
BasicMethodInfo
,MethodSignature
public interface MethodInfo
Can be implemented by classes carrying method information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull MethodDescriptor
getDescriptor()
Returns the method's descriptor.@NotNull java.lang.String
getMethodName()
Returns the method's name.
-
-
-
Method Detail
-
getMethodName
@NotNull @NotNull java.lang.String getMethodName()
Returns the method's name.
-
getDescriptor
@NotNull @NotNull MethodDescriptor getDescriptor()
Returns the method's descriptor.
-
-