* Retrieve a string representation for this platform description.
* @return an SL0-like String representation of this object
**/
public String toString() {
String s = "(Envelope ";
Iterator i = getAllTo();
if (i.hasNext()) {
s = s + " :to (sequence ";
for (Iterator ii=i; ii.hasNext(); )
s = s+" "+ii.next().toString();
s = s + ") ";
}
if (getFrom() != null)
s = s + " :from " + getFrom().toString();
if (getComments() != null)
s = s + " :comments " + getComments();
if (getAclRepresentation() != null)
s = s + " :acl-representation " + getAclRepresentation();
if (getPayloadLength() != null)
s = s + " :payload-length " + getPayloadLength().toString();
if (getPayloadEncoding() != null)
s = s + " :payload-encoding " + getPayloadEncoding();
if (getDate() != null)
s = s + " :date " + getDate().toString();
i = getAllIntendedReceiver();
if (i.hasNext()) {
s = s + " :intended-receiver (sequence ";
for (Iterator ii=i; ii.hasNext(); )
s = s+" "+ ii.next().toString();
s = s + ") ";
}