Package ball.lang.reflect
Interface DefaultInterfaceMethodInvocationHandler
-
- All Superinterfaces:
InvocationHandler
- All Known Implementing Classes:
DefaultInvocationHandler
,FacadeProxyInvocationHandler
,FluentNode.InvocationHandler
,InterceptingInvocationHandler
public interface DefaultInterfaceMethodInvocationHandler extends InvocationHandler
Java 8 implementation ofInvocationHandler.invoke(Object,Method,Object[])
to invoke an interface default method. Implementation detail ofDefaultInvocationHandler
.- Author:
- Allen D. Ball
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Object
invoke(Object proxy, Method method, Object[] argv)
This method assumesmethod.isDefault()
and will invokeMethod
directly.
-