home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-09-06 | 369 b | 18 lines |
- /*
- * Hello8.java
- *
- * Hello8 interface is a Remote interface that
- * gets implemented by the remote object, in
- * this case the Hello8Server.
- */
-
- package samples.rmi2;
-
- import java.rmi.*;
- import java.util.Date;
-
- public interface Hello8 extends Remote
- {
- String printHello() throws RemoteException;
- Date getTime() throws RemoteException;
- }