Package javassist.util.proxy
Interface ProxyObject
- All Superinterfaces:
Proxy
The interface implemented by proxy classes.
This interface is available only if the super class of the proxy object
does not have a
getHandler() method. If the super class
has getHandler, then Proxy interface is
available.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGet the handler.voidSets a handler.
-
Method Details
-
setHandler
Sets a handler. It can be used for changing handlers during runtime.- Specified by:
setHandlerin interfaceProxy
-
getHandler
MethodHandler getHandler()Get the handler. This can be used to access the underlying MethodHandler or to serialize it properly.- See Also:
-