1 16 17 package org.springframework.aop.support; 18 19 import java.lang.reflect.Method ; 20 21 import org.springframework.aop.MethodMatcher; 22 23 27 public abstract class DynamicMethodMatcher implements MethodMatcher { 28 29 public final boolean isRuntime() { 30 return true; 31 } 32 33 37 public boolean matches(Method method, Class targetClass) { 38 return true; 39 } 40 41 } 42 | Popular Tags |