Save This Page
Home » spring-framework-2.5.5-with-dependencies » org.springframework » aop » support » [javadoc | source]
org.springframework.aop.support
abstract public class: ClassFilters [javadoc | source]
java.lang.Object
   org.springframework.aop.support.ClassFilters
Static utility methods for composing ClassFilters .
Method from org.springframework.aop.support.ClassFilters Summary:
intersection,   intersection,   union,   union
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.springframework.aop.support.ClassFilters Detail:
 public static ClassFilter intersection(ClassFilter[] classFilters) 
    Match all classes that all of the given ClassFilters match.
 public static ClassFilter intersection(ClassFilter cf1,
    ClassFilter cf2) 
    Match all classes that both of the given ClassFilters match.
 public static ClassFilter union(ClassFilter[] classFilters) 
    Match all classes that either (or all) of the given ClassFilters matches.
 public static ClassFilter union(ClassFilter cf1,
    ClassFilter cf2) 
    Match all classes that either (or both) of the given ClassFilters matches.