Class DelegatingInvocationHandler<T>

  • All Implemented Interfaces:
    java.lang.reflect.InvocationHandler

    class DelegatingInvocationHandler<T>
    extends java.lang.Object
    implements java.lang.reflect.InvocationHandler
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private T delegate  
      private boolean initialized  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object invoke​(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args)  
      (package private) void setDelegate​(T delegate)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • initialized

        private volatile boolean initialized
      • delegate

        private T delegate
    • Constructor Detail

      • DelegatingInvocationHandler

        DelegatingInvocationHandler()
    • Method Detail

      • invoke

        public java.lang.Object invoke​(java.lang.Object proxy,
                                       java.lang.reflect.Method method,
                                       java.lang.Object[] args)
                                throws java.lang.Throwable
        Specified by:
        invoke in interface java.lang.reflect.InvocationHandler
        Throws:
        java.lang.Throwable
      • setDelegate

        void setDelegate​(T delegate)