Class MethodTransformSpec
- java.lang.Object
-
- org.kohsuke.file_leak_detector.transform.MethodTransformSpec
-
- Direct Known Subclasses:
MethodAppender
public abstract class MethodTransformSpec extends Object
Transforms a specific method.- Author:
- Kohsuke Kawaguchi
-
-
Constructor Summary
Constructors Constructor Description MethodTransformSpec(String name, String desc)
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract org.objectweb.asm.MethodVisitor
newAdapter(org.objectweb.asm.MethodVisitor base, int access, String name, String desc, String signature, String[] exceptions)
Creates a visitor that receives the original method definition and writes the transformed method to the given base.
-
-
-
Method Detail
-
newAdapter
public abstract org.objectweb.asm.MethodVisitor newAdapter(org.objectweb.asm.MethodVisitor base, int access, String name, String desc, String signature, String[] exceptions)
Creates a visitor that receives the original method definition and writes the transformed method to the given base.
-
-