|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
public interface Interceptor
Implementers of this interface can be registered in the ProxyMetaClass for notifications about method calls for objects managed by the ProxyMetaClass. See groovy/lang/InterceptorTest.groovy for details.
Method Summary | |
---|---|
Object
|
afterInvoke(Object object, String methodName, Object[] arguments, Object result)
This code is executed after the method is optionally called. |
Object
|
beforeInvoke(Object object, String methodName, Object[] arguments)
This code is executed before the method is optionally called. |
boolean
|
doInvoke()
@return whether the target method should be invoked at all. |
Method Detail |
---|
public Object afterInvoke(Object object, String methodName, Object[] arguments, Object result)
object
- receiver object for the called methodmethodName
- name of the called methodarguments
- arguments to the called methodresult
- result of the executed method call or result of beforeInvoke if method was not called
public Object beforeInvoke(Object object, String methodName, Object[] arguments)
object
- receiver object for the method callmethodName
- name of the method to callarguments
- arguments to the method call
public boolean doInvoke()
Copyright © 2003-2013 The Codehaus. All rights reserved.