Uses of Class
proper.remote.messages.Message

Packages that use Message
proper.remote Classes for the distributed computing part of Proper can be found here, i.e. 
proper.remote.messages Contains the XML-messages used for the distributed computing. 
 

Uses of Message in proper.remote
 

Methods in proper.remote that return Message
 Message Server.createMessage()
          creates a new Message with the IP and Port of the server
 Message Server.createMessage(java.lang.String request)
          creates a new Message with the IP and Port of the server and with the given Request
 Message Processor.createMessage(java.lang.String request)
          creates a new Message with the IP and Port of the server and with the given Request
 

Uses of Message in proper.remote.messages
 

Subclasses of Message in proper.remote.messages
 class DataMessage
          This class encapsulates a DataMessage, where the data of the payload (file or something like this) is in the <body> tag of the Message.
The actual data looks like this:
 class FileMessage
          This class encapsulates a FileMessage, where the data of the payload (file or something like this) is in the <body> tag of the Message, besides the the name of the file.
The actual data looks like this:
 class JobMessage
          This class encapsulates a JobMessage, where the job is inside the <body> tag of the Message.
The actual Job looks like this:
 

Methods in proper.remote.messages with parameters of type Message
 boolean JobMessage.isOtherMessage(Message msg)
          checks whether this message is of a different type, is used to determine whether the body has to be cleared if the data is copied from another Message
 boolean FileMessage.isOtherMessage(Message msg)
          checks whether this message is of a different type, is used to determine whether the body has to be cleared if the data is copied from another Message
 boolean DataMessage.isOtherMessage(Message msg)
          checks whether this message is of a different type, is used to determine whether the body has to be cleared if the data is copied from another Message
 

Constructors in proper.remote.messages with parameters of type Message
DataMessage(Message msg)
          initializes the object with the given Message
FileMessage(Message msg)
          initializes the object with the given Message
JobMessage(Message msg)
          initializes the object with the given Message
Message(Message msg)
          initializes the object with the given Message