类 ProxyFactoryFactoryImpl

    • 方法详细资料

      • buildBasicProxyFactory

        public BasicProxyFactory buildBasicProxyFactory​(Class superClass,
                                                        Class[] interfaces)
        从接口复制的说明: ProxyFactoryFactory
        Build a proxy factory for basic proxy concerns. The return should be capable of properly handling newInstance() calls.

        Should build basic proxies essentially equivalent to JDK proxies in terms of capabilities, but should be able to deal with abstract super classes in addition to proxy interfaces.

        Must pass in either superClass or interfaces (or both).

        指定者:
        buildBasicProxyFactory 在接口中 ProxyFactoryFactory
        参数:
        superClass - The abstract super class (or null if none).
        interfaces - Interfaces to be proxied (or null if none).
        返回:
        The proxy class