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 StaticMethodMatcher implements MethodMatcher { 28 29 public final boolean isRuntime() { 30 return false; 31 } 32 33 public final boolean matches(Method method, Class targetClass, Object [] args) { 34 throw new UnsupportedOperationException ("Illegal MethodMatcher usage"); 36 } 37 38 } 39 | Popular Tags |