public abstract class

StaticMethodMatcherPointcut

extends StaticMethodMatcher
implements Pointcut
java.lang.Object
   ↳ org.springframework.aop.support.StaticMethodMatcher
     ↳ org.springframework.aop.support.StaticMethodMatcherPointcut
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Convenient superclass when we want to force subclasses to implement the MethodMatcher interface but subclasses will want to be pointcuts.

The "classFilter" property can be set to customize ClassFilter behavior. The default is TRUE.

Summary

[Expand]
Inherited Fields
From interface org.springframework.aop.MethodMatcher
From interface org.springframework.aop.Pointcut
Public Constructors
StaticMethodMatcherPointcut()
Public Methods
ClassFilter getClassFilter()
Return the ClassFilter for this pointcut.
final MethodMatcher getMethodMatcher()
Return the MethodMatcher for this pointcut.
void setClassFilter(ClassFilter classFilter)
Set the ClassFilter to use for this pointcut.
[Expand]
Inherited Methods
From class org.springframework.aop.support.StaticMethodMatcher
From class java.lang.Object
From interface org.springframework.aop.MethodMatcher
From interface org.springframework.aop.Pointcut

Public Constructors

public StaticMethodMatcherPointcut ()

Public Methods

public ClassFilter getClassFilter ()

Return the ClassFilter for this pointcut.

Returns
  • the ClassFilter (never null)

public final MethodMatcher getMethodMatcher ()

Return the MethodMatcher for this pointcut.

Returns
  • the MethodMatcher (never null)

public void setClassFilter (ClassFilter classFilter)

Set the ClassFilter to use for this pointcut. Default is TRUE.