1 16 17 package org.springframework.aop; 18 19 import java.lang.reflect.Method ; 20 21 48 public interface MethodMatcher { 49 50 60 boolean matches(Method method, Class targetClass); 61 62 72 boolean isRuntime(); 73 74 89 boolean matches(Method method, Class targetClass, Object [] args); 90 91 92 95 MethodMatcher TRUE = TrueMethodMatcher.INSTANCE; 96 97 } 98 | Popular Tags |