home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / ServerMessage.java < prev    next >
Text File  |  1997-07-03  |  690b  |  20 lines

  1.  
  2. package borland.samples.apps.chess.client;
  3. /** The data stucture used by the classes that send/receive messages as sent between client and server
  4. * @param int port the port number of the originator of the message (used by server only)
  5. * @param String msgid The message type (cannot contain any spaces)
  6. * @param String msg The message type specific data
  7. */
  8. public class ServerMessage
  9. {
  10.   public int    port;    //who sent it
  11.   public String msgid;   //message type
  12.   public String msg;     //message type specific data
  13.  
  14.   public ServerMessage(int port,String messageId,String message) {
  15.     this.port  = port;
  16.     this.msgid = messageId;
  17.     this.msg   = message;
  18.   }
  19. }
  20.