| Package | Description |
|---|---|
| java.lang.reflect |
Provides classes and interfaces for obtaining reflective
information about classes and objects.
|
| Modifier and Type | Field and Description |
|---|---|
protected InvocationHandler |
Proxy.h
the invocation handler for this proxy instance.
|
| Modifier and Type | Method and Description |
|---|---|
static InvocationHandler |
Proxy.getInvocationHandler(Object proxy)
Returns the invocation handler for the specified proxy instance.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Constructor and Description |
|---|
Proxy(InvocationHandler h)
Constructs a new
Proxy instance from a subclass
(typically, a dynamic proxy class) with the specified value
for its invocation handler. |
Copyright © 2015 API Design. All Rights Reserved.