proguard.classfile.MethodInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proguard-core Show documentation
Show all versions of proguard-core Show documentation
ProGuardCORE is a free library to read, analyze, modify, and write Java class files.
package proguard.classfile;
import org.jetbrains.annotations.NotNull;
/** Can be implemented by classes carrying method information. */
public interface MethodInfo {
/** Returns the method's name. */
@NotNull
String getMethodName();
/** Returns the method's descriptor. */
@NotNull
MethodDescriptor getDescriptor();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy