com.lonniepryor.blues.aop
Interface AfterReturning
- public interface AfterReturning
Interface that describes the behavour of advice that executes after returning
from the invocation of a join point.
- Version:
- $Revision: 1.1 $
- Author:
- Lonnie Pryor
Method Summary |
void |
afterReturning(java.lang.Object target,
java.lang.reflect.Method method,
java.lang.Object[] params,
java.lang.Object returnVal)
Called after returning from the invocation of a join point. |
afterReturning
public void afterReturning(java.lang.Object target,
java.lang.reflect.Method method,
java.lang.Object[] params,
java.lang.Object returnVal)
- Called after returning from the invocation of a join point.
- Parameters:
method
- The method that was invoked.target
- The object the invocation occurred on.params
- The parameters passed to the method.returnVal
- The value returned by the join point.
Copyright © 2003 Blues Framework. All Rights Reserved.