Uses of Interface
org.springframework.aop.ClassFilter

Packages that use ClassFilter
org.springframework.aop Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.  
org.springframework.aop.support Convenience classes for using Spring's AOP API. 
 

Uses of ClassFilter in org.springframework.aop
 

Fields in org.springframework.aop declared as ClassFilter
static ClassFilter ClassFilter.TRUE
          Canonical instance of a ClassFilter that matches all classes.
 

Methods in org.springframework.aop that return ClassFilter
 ClassFilter Pointcut.getClassFilter()
           
 ClassFilter IntroductionAdvisor.getClassFilter()
          Return the filter determining which target classes this introduction should apply to.
 

Uses of ClassFilter in org.springframework.aop.support
 

Classes in org.springframework.aop.support that implement ClassFilter
 class ControlFlowPointcut
          Pointcut and method matcher for use in simple cflow-style pointcut.
 class DefaultIntroductionAdvisor
          Simple IntroductionAdvisor implementation that by default applies to any class.
 class RegexpMethodPointcut
          Perl5 regular expression pointcut bean.
 class RegexpMethodPointcutAdvisor
          Convenient class for regexp method pointcuts that hold an Interceptor, making them an Advisor.
 class RootClassFilter
          Simple ClassFilter implementation that passes classes (and optionally subclasses)
 

Methods in org.springframework.aop.support that return ClassFilter
static ClassFilter ClassFilters.union(ClassFilter a, ClassFilter b)
           
static ClassFilter ClassFilters.intersection(ClassFilter a, ClassFilter b)
           
 ClassFilter StaticMethodMatcherPointcut.getClassFilter()
           
 ClassFilter DynamicMethodMatcherPointcutAdvisor.getClassFilter()
           
 ClassFilter ComposablePointcut.getClassFilter()
           
 ClassFilter DefaultIntroductionAdvisor.getClassFilter()
           
 ClassFilter RegexpMethodPointcut.getClassFilter()
           
 ClassFilter ControlFlowPointcut.getClassFilter()
           
 

Methods in org.springframework.aop.support with parameters of type ClassFilter
static ClassFilter ClassFilters.union(ClassFilter a, ClassFilter b)
           
static ClassFilter ClassFilters.intersection(ClassFilter a, ClassFilter b)
           
 ComposablePointcut ComposablePointcut.union(ClassFilter filter)
           
 ComposablePointcut ComposablePointcut.intersection(ClassFilter filter)
           
 

Constructors in org.springframework.aop.support with parameters of type ClassFilter
ComposablePointcut(ClassFilter classFilter, MethodMatcher methodMatcher)
           
 



Copyright (C) 2003-2004 The Spring Framework Project.