org.springframework.aop.support
Class StaticMethodMatcherPointcutBeforeAdvisor

org.springframework.aop.support.StaticMethodMatcher
  |
  +--org.springframework.aop.support.StaticMethodMatcherPointcut
        |
        +--org.springframework.aop.support.StaticMethodMatcherPointcutAdvisor
              |
              +--org.springframework.aop.support.StaticMethodMatcherPointcutBeforeAdvisor

public abstract class StaticMethodMatcherPointcutBeforeAdvisor
extends StaticMethodMatcherPointcutAdvisor
implements BeforeAdvisor

Convenient superclass for static method pointcuts that hold a a BeforeAdvice, making them an Advisor.

Author:
Rod Johnson
Version: $Id: StaticMethodMatcherPointcutBeforeAdvisor.java,v 1.2 2004/01/13 16:34:31 johnsonr Exp $

Method Summary
 BeforeAdvicegetBeforeAdvice()
           
 abstract booleanmatches(Method m, Class targetClass)
           
 voidsetBeforeAdvice(MethodBeforeAdvice beforeAdvice)
           

Methods inherited from class org.springframework.aop.support.StaticMethodMatcherPointcutAdvisor
getPointcut, isPerInstance

Methods inherited from class org.springframework.aop.support.StaticMethodMatcherPointcut
getClassFilter, getMethodMatcher

Methods inherited from class org.springframework.aop.support.StaticMethodMatcher
isRuntime, matches

Method Detail

getBeforeAdvice

public BeforeAdvice getBeforeAdvice()

matches

public abstract boolean matches(Method m, Class targetClass)

setBeforeAdvice

public void setBeforeAdvice(MethodBeforeAdvice beforeAdvice)

Association Links

to Class org.springframework.aop.MethodBeforeAdvice