MessageImplpublic class MessageImpl extends MessageSummaryImpl implements MessageAn implementation of the Message interface. |
Fields Summary |
---|
private String | text |
Constructors Summary |
---|
public MessageImpl(long id, DayMonthYear createDate, BoardSummary board, String subject, String authorEmail, String text, long inReplyTo)Construct a new instance of this class.
super(id, createDate, board, subject, authorEmail, inReplyTo);
this.text = text;
|
|