Lines Matching defs:exportObject
35 * <p>For the constructors and static <code>exportObject</code> methods
42 * #exportObject(Remote) UnicastRemoteObject.exportObject(Remote)} method,
150 exportObject((Remote) this, port);
172 exportObject((Remote) this, port, csf, ssf);
213 exportObject((Remote) this, port);
215 exportObject((Remote) this, port, csf, ssf);
227 public static RemoteStub exportObject(Remote obj)
237 return (RemoteStub) exportObject(obj, new UnicastServerRef(true));
249 public static Remote exportObject(Remote obj, int port)
252 return exportObject(obj, new UnicastServerRef(port));
267 public static Remote exportObject(Remote obj, int port,
273 return exportObject(obj, new UnicastServerRef2(port, csf, ssf));
303 private static Remote exportObject(Remote obj, UnicastServerRef sref)
310 return sref.exportObject(obj, null, false);