org.springframework.aop.support
Class DynamicMethodMatcher

Direct Known Subclasses:
DynamicMethodMatcherPointcutAroundAdvisor

public abstract class DynamicMethodMatcher
implements MethodMatcher

Convenient abstract superclass for dynamic method matchers, which do care about arguments at runtime.


Method Summary
 final booleanisRuntime()
           
 booleanmatches(Method m, Class targetClass)
          Can override to add preconditions for dynamic matching.

Method Detail

isRuntime

public final boolean isRuntime()

matches

public boolean matches(Method m, Class targetClass)
Can override to add preconditions for dynamic matching. This implementation always returns true.