Java Doc for GenericInvocationHandler.java in » Net » Terracotta » com » tc » common » proxy » Java Source Code / Java DocumentationJava Source Code and Java Documentation
This class provides a generic
InvocationHandler , used with
java.lang.reflect.Proxy , that allows
some sanity in generating proxies. Basically, you create a
GenericInvocationHandler as the target of a
Proxy . When called, the invocation handler will look in an object that you give it at construction time for
a method of the correct signature, and invoke that.