Uses of Class
ks.common.message.Message

Packages that use Message
ks.client.interfaces All interfaces in this package are pre-defined contracts between the various system components that exist within the KombatSolitaire Client. 
ks.common.message Core set of messages that exist independently from any individual Component within the KombatSolitaire ProductLine Once these message classes are published, they will never be changed. 
ks.common.view Core set of classes needed to properly view KombatSolitaire Plugins. 
ks.protocol All commands and messages that are sent/received by the client and server must be available to both sets of components. 
ks.server.interfaces All interfaces in this package are pre-defined contracts between the various system components that exist within the KombatSolitaire Server. 
 

Uses of Message in ks.client.interfaces
 

Methods in ks.client.interfaces with parameters of type Message
 void ITableGUI.processMessage(Message msg)
          Message has arrived from Server that may require processing.
 boolean IProcessMessage.processMessage(Message msg)
          Process the given message which was received from the server.
 boolean IClientInterface.interpret(Message m)
          Responses from the server are Message objects.
 boolean IClientComponent.processMessage(Message m)
          Process the given message which was received from the server.
 

Uses of Message in ks.common.message
 

Subclasses of Message in ks.common.message
 class ClientMessage
          Message to be dealt with by client.
 class LoginMessage
          Login Message sent to all clients whenever a new client is logged in.
 class LogoutMessage
          Logout Message sent to all clients whenever a client logs out.
 class OutputMessage
          Message that simply should be delivered to the client to be output on screen.
 class QuitMessage
          Signal that client is exiting.
 

Methods in ks.common.message with parameters of type Message
 void MessageSet.add(Message m)
          Add a Message.
 

Uses of Message in ks.common.view
 

Methods in ks.common.view with parameters of type Message
 void Container.processMessage(Message msg)
          Ability to process messages from the server is necessary for some versions of solitaire (like multi-solitaire).
 

Uses of Message in ks.protocol
 

Subclasses of Message in ks.protocol
 class BulkLoginMessage
          Login Message sent on login that contains full set of all active users.
 class PlugInManagerMessage
          Messages to plugin Manager on client side.
 class UserManagerMessage
          Base class for all usermanager messages.
 

Uses of Message in ks.server.interfaces
 

Methods in ks.server.interfaces with parameters of type Message
 void IOutput.broadcast(Message m)
          Broadcast Message to all active users EXCEPT self.
 void IOutput.broadcast(java.util.Enumeration users, Message m)
          Broadcasts message to the given set of users (EXCEPT self).
 void IOutput.output(Message m)
          Output message.