Uses of Interface
java.lang.reflect.InvocationHandler

Packages that use InvocationHandler
java.lang.reflect Provides classes and interfaces for obtaining reflective information about classes and objects. 
 

Uses of InvocationHandler in java.lang.reflect
 

Methods in java.lang.reflect that return InvocationHandler
static InvocationHandler Proxy.getInvocationHandler(Object proxy)
          Returns the invocation handler for the specified proxy instance.
 

Methods in java.lang.reflect with parameters of type InvocationHandler
static Object Proxy.newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler h)
          Returns an instance of a proxy class for the specified interfaces that dispatches method invocations to the specified invocation handler.