org.springframework.aop.support
abstract public class: StaticMethodMatcher [javadoc |
source]
java.lang.Object
org.springframework.aop.support.StaticMethodMatcher
All Implemented Interfaces:
MethodMatcher
Direct Known Subclasses:
TransactionAttributeSourcePointcut, GetterPointcut, AbstractRegexpMethodPointcut, Perl5RegexpMethodPointcut, JdkRegexpMethodPointcut, SetterPointcut, StaticMethodMatcherPointcutAdvisor, StaticMethodMatcherPointcut, NameMatchMethodPointcut, AdviceExcludingMethodMatcher, AnnotationMethodMatcher
Convenient abstract superclass for static method matchers, which don't care
about arguments at runtime.
| Method from org.springframework.aop.support.StaticMethodMatcher Summary: |
|---|
|
isRuntime, matches |
| Method from org.springframework.aop.support.StaticMethodMatcher Detail: |
public final boolean isRuntime() {
return false;
}
|
public final boolean matches(Method method,
Class targetClass,
Object[] args) {
// should never be invoked because isRuntime() returns false
throw new UnsupportedOperationException("Illegal MethodMatcher usage");
}
|