Uses of Interface
java.lang.reflect.InvocationHandler
-
Packages that use InvocationHandler 软件包 描述 java.beans 包含与开发 bean相关的类 - 基于JavaBeans架构的组件。java.lang.reflect 提供用于获取关于类和对象的反射信息的类和接口。java.rmi.server 提供用于支持RMI服务器端的类和接口。javax.management 提供Java管理扩展的核心类。javax.management.openmbean 提供打开的数据类型和Open MBean描述符类。 -
-
Uses of InvocationHandler in java.beans
Classes in java.beans that implement InvocationHandler Modifier and Type Class 描述 class
EventHandler
EventHandler
类提供对动态生成事件侦听器的支持,该侦听器的方法执行涉及传入事件对象和目标对象的简单语句。 -
Uses of InvocationHandler in java.lang.reflect
Fields in java.lang.reflect declared as InvocationHandler Modifier and Type Field 描述 protected InvocationHandler
Proxy. h
该代理实例的调用处理程序。Methods in java.lang.reflect that return InvocationHandler Modifier and Type 方法 描述 static InvocationHandler
Proxy. getInvocationHandler(Object proxy)
返回指定代理实例的调用处理程序。Methods in java.lang.reflect with parameters of type InvocationHandler Modifier and Type 方法 描述 static Object
Proxy. newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h)
返回指定接口的代理实例,该代理实例将方法调用分派给指定的调用处理程序。Constructors in java.lang.reflect with parameters of type InvocationHandler Constructor 描述 Proxy(InvocationHandler h)
从一个子类(通常是一个动态代理类)构造一个新的Proxy
实例,并为其调用处理程序指定了一个值。 -
Uses of InvocationHandler in java.rmi.server
Classes in java.rmi.server that implement InvocationHandler Modifier and Type Class 描述 class
RemoteObjectInvocationHandler
用于Java Remote Method Invocation(Java RMI)的InvocationHandler
接口的实现。 -
Uses of InvocationHandler in javax.management
Classes in javax.management that implement InvocationHandler Modifier and Type Class 描述 class
MBeanServerInvocationHandler
InvocationHandler
将MBean管理界面中的方法通过MBean服务器转发到MBean。 -
Uses of InvocationHandler in javax.management.openmbean
Classes in javax.management.openmbean that implement InvocationHandler Modifier and Type Class 描述 class
CompositeDataInvocationHandler
AnInvocationHandler
that forwards getter methods to aCompositeData
.
-