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 Objectinvoke(Object proxy, Method method, Object[] argv)This method assumesmethod.isDefault()and will invokeMethoddirectly.
-