List of usage examples for org.objectweb.asm MethodVisitor interface-usage
From source file org.nanocontainer.picometer.PicoMeterMethodVisitor.java
/**
* Visits code and records instantiations of new objects.
*
* @author Aslak Hellesøy
* @version $Revision: 1570 $
*/
From source file org.springframework.migrationanalyzer.contributions.bytecode.ResultGatheringMethodVisitor.java
interface ResultGatheringMethodVisitor<T> extends MethodVisitor, ResultGatheringVisitor<T> {
}
From source file org.springframework.osgi.test.internal.util.DependencyVisitor.java
/**
* ASM based class for determining a class imports. The code is heavily based on an Eugene Kuleshov's ASM <a
* href="http://asm.objectweb.org/doc/tutorial-asm-2.0.html">tutorial</a>.
*
* <p/>The main differences from the original source in the article are the 1.4 compatibility, the handling of class
* objects not instantiated (MyClass.class.getName()) as these are specially handled by the compiler and analysis of
From source file st.redline.smalltalk.interpreter.TracingMethodVisitor.java
public class TracingMethodVisitor implements MethodVisitor { private final MethodVisitor methodVisitor; public TracingMethodVisitor(MethodVisitor methodVisitor) { this.methodVisitor = methodVisitor;
From source file xbird.xquery.compile.MethodGenerator.java
/**
*
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405+xbird@gmail.com)