JavaTM 2 Platform
Standard Ed. 6

javax.rmi.CORBA
介面 StubDelegate


public interface StubDelegate

支持 Stub 中方法實作的委託。委託是類別的實例,此類別實作此介面並提供 javax.rmi.CORBA.Stub 的所有方法的替代實作。如果啟用了委託,則每個 stub 都有一個關聯的委託。 通過提供委託的類別名稱作為 javax.rmi.CORBA.StubClass 系統屬性的值來啟用委託。

另請參見:
Stub

方法摘要
 void connect(Stub self, ORB orb)
          Stub.connect(org.omg.CORBA.ORB) 的委託調用。
 boolean equals(Stub self, Object obj)
          Stub.equals(java.lang.Object) 的委託調用。
 int hashCode(Stub self)
          Stub.hashCode() 的委託調用。
 void readObject(Stub self, ObjectInputStream s)
          Stub.readObject(java.io.ObjectInputStream) 的委託調用。
 String toString(Stub self)
          Stub.toString() 的委託調用。
 void writeObject(Stub self, ObjectOutputStream s)
          Stub.writeObject(java.io.ObjectOutputStream) 的委託調用。
 

方法詳細資訊

hashCode

int hashCode(Stub self)
Stub.hashCode() 的委託調用。


equals

boolean equals(Stub self,
               Object obj)
Stub.equals(java.lang.Object) 的委託調用。


toString

String toString(Stub self)
Stub.toString() 的委託調用。


connect

void connect(Stub self,
             ORB orb)
             throws RemoteException
Stub.connect(org.omg.CORBA.ORB) 的委託調用。

拋出:
RemoteException

readObject

void readObject(Stub self,
                ObjectInputStream s)
                throws IOException,
                       ClassNotFoundException
Stub.readObject(java.io.ObjectInputStream) 的委託調用。

拋出:
IOException
ClassNotFoundException

writeObject

void writeObject(Stub self,
                 ObjectOutputStream s)
                 throws IOException
Stub.writeObject(java.io.ObjectOutputStream) 的委託調用。

拋出:
IOException

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only