public interface NonDataOperationHandler
| Modifier and Type | Method and Description |
|---|---|
boolean |
handles(Object proxy,
Method method,
Object... args)
Used to find out if the given invocation on the indicated proxy object can be handled by this
handler.
|
Object |
invoke(Object proxy,
Method method,
Object... args)
Used to handle the invocation.
|
boolean handles(Object proxy, Method method, Object... args)
proxy - the proxymethod - the methodargs - the arguments passed to the methodObject invoke(Object proxy, Method method, Object... args)
handles(Object, Method, Object...)) that the handler can
indeed handle this method invocation.proxy - the proxy objectmethod - the method being calledargs - the argumentsCopyright © 2014–2021. All rights reserved.