/* 112 */ return (Class[])(Class[])interfaces.toArray(new Class[interfaces.size()]);
/* */ }
/* */
/* */ public static Interceptor[] addAsynchProxyInterceptor(AsynchMixin mixin, Interceptor[] interceptors)
/* */ {
/* 117 */ AsynchProxyInterceptor interceptor = new AsynchProxyInterceptor(mixin);
/* 118 */ Interceptor[] newInterceptors = null;
/* 119 */ newInterceptors = new Interceptor[interceptors.length + 1];
/* 120 */ newInterceptors[0] = interceptor;
/* 121 */ System.arraycopy(interceptors, 0, newInterceptors, 1, interceptors.length);
/* 122 */ return newInterceptors;