1 7 15 16 package javax.rmi.CORBA; 17 18 import java.io.IOException ; 19 import java.io.ObjectInputStream ; 20 import java.io.ObjectOutputStream ; 21 import java.rmi.RemoteException ; 22 import org.omg.CORBA.ORB ; 23 24 38 public interface StubDelegate { 39 40 43 int hashCode(Stub self); 44 45 48 boolean equals(Stub self, java.lang.Object obj); 49 50 53 String toString(Stub self); 54 55 58 void connect(Stub self, ORB orb) 59 throws RemoteException ; 60 61 66 void readObject(Stub self, ObjectInputStream s) 67 throws IOException , ClassNotFoundException ; 68 69 74 void writeObject(Stub self, ObjectOutputStream s) 75 throws IOException ; 76 77 } 78 | Popular Tags |