import java.rmi.*; /** *This interface defines the methods of the client object that *are accessible to the sever through the referance it holds. */ public interface PopupClientInterface extends java.rmi.Remote{ /** *Shows the popup on the client in a new frame. *@param String containing the message to be brodcast. */ public void showPopup(String message) throws RemoteException; /** *Returns some information about the individual client. *An ip address in our case, could also be a login name etc *@return String containing the IP address or login name */ public String getInfo() throws RemoteException; }