![JAR search and dependency download from the Maven repository](/logo.png)
nyla.solutions.global.patterns.reflection.ProxyInvocationHandler Maven / Gradle / Ivy
package nyla.solutions.global.patterns.reflection;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import nyla.solutions.global.util.Debugger;
public class ProxyInvocationHandler implements InvocationHandler
{
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable
{
Debugger.println("proxy="+method);
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy