com.caucho.burlap.client
类 BurlapProxy

java.lang.Object
  继承者 com.caucho.burlap.client.BurlapProxy
所有已实现的接口:
java.lang.reflect.InvocationHandler

public class BurlapProxy
extends java.lang.Object
implements java.lang.reflect.InvocationHandler

Proxy implementation for Burlap clients. Applications will generally use BurlapProxyFactory to create proxy clients.


方法摘要
 java.net.URL getURL()
          Returns the proxy's URL.
 java.lang.Object invoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args)
          Handles the object invocation.
 java.lang.String toString()
           
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

方法详细信息

getURL

public java.net.URL getURL()
Returns the proxy's URL.


invoke

public java.lang.Object invoke(java.lang.Object proxy,
                               java.lang.reflect.Method method,
                               java.lang.Object[] args)
                        throws java.lang.Throwable
Handles the object invocation.

指定者:
接口 java.lang.reflect.InvocationHandler 中的 invoke
参数:
proxy - the proxy object to invoke
method - the method to call
args - the arguments to the proxy object
抛出:
java.lang.Throwable

toString

public java.lang.String toString()
覆盖:
java.lang.Object 中的 toString