Save This Page
Home » spring-framework-2.5.5-with-dependencies » org.springframework » aop » support » [javadoc | source]
org.springframework.aop.support
abstract public class: Pointcuts [javadoc | source]
java.lang.Object
   org.springframework.aop.support.Pointcuts
Pointcut constants for matching getters and setters, and static methods useful for manipulating and evaluating pointcuts. These methods are particularly useful for composing pointcuts using the union and intersection methods.
Field Summary
public static final  Pointcut SETTERS    Pointcut matching all bean property setters, in any class 
public static final  Pointcut GETTERS    Pointcut matching all bean property getters, in any class 
Method from org.springframework.aop.support.Pointcuts Summary:
intersection,   matches,   union
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.springframework.aop.support.Pointcuts Detail:
 public static Pointcut intersection(Pointcut pc1,
    Pointcut pc2) 
    Match all methods that both the given pointcuts match.
 public static boolean matches(Pointcut pointcut,
    Method method,
    Class targetClass,
    Object[] args) 
    Perform the least expensive check for a pointcut match.
 public static Pointcut union(Pointcut pc1,
    Pointcut pc2) 
    Match all methods that either (or both) of the given pointcuts matches.