All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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