com.g2forge.alexandria.analysis.IMethodAnalyzer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-analysis Show documentation
Show all versions of ax-analysis Show documentation
Java reflection and bytecode analysis toolkit, usable for all kinds of introspection and analysis of running code.
package com.g2forge.alexandria.analysis;
import java.lang.reflect.Method;
public interface IMethodAnalyzer {
public org.apache.bcel.classfile.Method getBCEL();
public Method getMethod();
public String getPath();
}