Package | Description |
---|---|
java.lang.reflect |
Modifier and Type | Field and Description |
---|---|
protected InvocationHandler |
Proxy.h
The InvocationHandler for this instance.
|
Modifier and Type | Method and Description |
---|---|
static InvocationHandler |
Proxy.getInvocationHandler(Object object)
You can ask an instance of a dynamic proxy class for its InvocationHandler.
|
Modifier and Type | Method and Description |
---|---|
static Object |
Proxy.newProxyInstance(ClassLoader loader,
Class[] interfaces,
InvocationHandler h) |
Constructor and Description |
---|
Proxy(InvocationHandler h)
When an instance of a dynamic proxy class is created, an InvocationHandler
is specified.
|
TestProxy(InvocationHandler h) |