Class Room

java.lang.Object
  extended byRoom

public class Room
extends java.lang.Object

This class encapsulates the concept of a room message. It includes both the message describing the room and the time at which the message was received. This class is used whenever a received 802.11 message describing a room must be stored or placed into a queue or history.


Field Summary
 java.lang.String roomMsg
           
 long timeReceived
           
 
Constructor Summary
Room(java.lang.String msg, long time)
          Basic constructor can be used to create a new Room object describing the room message that was received and the time at which it was received.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

roomMsg

public java.lang.String roomMsg

timeReceived

public long timeReceived
Constructor Detail

Room

public Room(java.lang.String msg,
            long time)
Basic constructor can be used to create a new Room object describing the room message that was received and the time at which it was received.

Parameters:
msg - The message that was received.
time - The time at which the message was received.