1 package net.sf.cglib.transform;
2
3 import org.objectweb.asm.Attribute;
4
5 public interface MethodFilter {
6 // TODO: pass class name too?
7 boolean accept(int access, String name, String desc, String[] exceptions, Attribute attrs);
8 }
This page was automatically generated by Maven