Class Messaggio

java.lang.Object
  |
  +--Messaggio

public class Messaggio
extends java.lang.Object
implements java.io.Serializable

Implementa un messaggio del sistema di news. Un messaggio è costituito da un'intestazione e un corpo.

Author:
Mauro Barbieri
See Also:
Serialized Form

Field Summary
 MsgBody body
          Corpo del messaggio.
 MsgHeader header
          Intestazione del messaggio.
 
Constructor Summary
Messaggio(MsgHeader header, MsgBody body)
          Crea un'istanza di messaggio data l'intestazione e il corpo.
 
Method Summary
 java.lang.String toString()
          Ridefinisce l'omonimo metodo della classe java.lang.Object per rappresentare come stringa un Messaggio.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

header

public MsgHeader header
Intestazione del messaggio.

body

public MsgBody body
Corpo del messaggio.
Constructor Detail

Messaggio

public Messaggio(MsgHeader header,
                 MsgBody body)
Crea un'istanza di messaggio data l'intestazione e il corpo.
Parameters:
header - intestazione del messaggio.
body - corpo del messaggio.
Method Detail

toString

public java.lang.String toString()
Ridefinisce l'omonimo metodo della classe java.lang.Object per rappresentare come stringa un Messaggio. Usato principalmente per il debugging. La rappresentazione scelta e' :
 	header 
body
Overrides:
toString in class java.lang.Object