1 package dynaop;2 3 import java.lang.reflect.Method ;4 5 /**6 * Picks methods.7 * 8 * @author Bob Lee (crazybob@crazybob.org)9 */10 public interface MethodPointcut {11 12 /**13 * Returns true if this pointcut picks the given method.14 */15 boolean picks(Method method);16 }17