org.springframework.aop.support
Class UnionPointcut


class UnionPointcut
implements Pointcut

Pointcut unions are tricky, because we can't just OR the MethodMatchers: we need to check that each MethodMatcher's ClassFilter was happy as well.

Author:
Rod Johnson
Version: $Id: UnionPointcut.java,v 1.1 2004/01/12 18:45:18 johnsonr Exp $

Constructor Summary
UnionPointcut(Pointcut a, Pointcut b)
           

Method Summary
 ClassFiltergetClassFilter()
           
 MethodMatchergetMethodMatcher()
           

Constructor Detail

UnionPointcut

public UnionPointcut(Pointcut a, Pointcut b)
Method Detail

getClassFilter

public ClassFilter getClassFilter()
See Also:
org.springframework.aop.Pointcut.getClassFilter()

getMethodMatcher

public MethodMatcher getMethodMatcher()
See Also:
org.springframework.aop.Pointcut.getMethodMatcher()

Association Links

to Class org.springframework.aop.Pointcut

to Class org.springframework.aop.Pointcut

to Class org.springframework.aop.MethodMatcher