Uses of Class
com.asdf.parser.Message

Packages that use Message
com.asdf.client Client component of the software. 
com.asdf.parser Automatically generated parser class for Message objects 
com.asdf.server Server component of the software. 
com.asdf.utils com.asdf.utilsUtility functions needed by software 
 

Uses of Message in com.asdf.client
 

Methods in com.asdf.client that return Message
 Message LobbyController.getMessageTemplate()
          Create Message already containing correct sessionID
 

Methods in com.asdf.client with parameters of type Message
 void ConnectionHandler.sendMessage(Message msg)
          Queues message to be send to server.
 

Uses of Message in com.asdf.parser
 

Methods in com.asdf.parser that return Message
 Message ObjectFactory.createMessage()
          Create an instance of Message
 

Uses of Message in com.asdf.server
 

Methods in com.asdf.server that return Message
 Message MessageHandler.generateGeneralErrorResponse(boolean success)
          Generate Message with general error response set to given value.
 Message MessageHandler.generateGeneralErrorResponse(boolean success, java.lang.String description)
          Generate Message with general error response set to given value.
 

Methods in com.asdf.server with parameters of type Message
 void ClientConnection.send(Message msg)
          Sends message with it's size to client.
 

Uses of Message in com.asdf.utils
 

Methods in com.asdf.utils that return Message
 Message XMLTools.bytesToMessage(byte[] rawData)
          Converts byte array to Message instance
 Message XMLTools.loadMessageFromFile(java.lang.String path)
          Unmarshalls object from file and casts it to Message.
 

Methods in com.asdf.utils with parameters of type Message
 byte[] XMLTools.messageToBytes(Message msg)
          Converts Message to byte array.