Save This Page
Home » spring-framework-2.5.5-with-dependencies » org.springframework » aop » support » [javadoc | source]
org.springframework.aop.support
abstract public class: MethodMatchers [javadoc | source]
java.lang.Object
   org.springframework.aop.support.MethodMatchers
Static utility methods for composing MethodMatchers .

A MethodMatcher may be evaluated statically (based on method and target class) or need further evaluation dynamically (based on arguments at the time of method invocation).

Method from org.springframework.aop.support.MethodMatchers Summary:
intersection,   matches,   union,   union
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.springframework.aop.support.MethodMatchers Detail:
 public static MethodMatcher intersection(MethodMatcher mm1,
    MethodMatcher mm2) 
    Match all methods that both of the given MethodMatchers match.
 public static boolean matches(MethodMatcher mm,
    Method method,
    Class targetClass,
    boolean hasIntroductions) 
 public static MethodMatcher union(MethodMatcher mm1,
    MethodMatcher mm2) 
    Match all methods that either (or both) of the given MethodMatchers matches.
 static MethodMatcher union(MethodMatcher mm1,
    ClassFilter cf1,
    MethodMatcher mm2,
    ClassFilter cf2) 
    Match all methods that either (or both) of the given MethodMatchers matches.