FileDocCategorySizeDatePackage
MessageImpl.javaAPI DocExample693Sun Sep 02 14:59:06 BST 2001com.oreilly.forum.domain

MessageImpl

public class MessageImpl extends MessageSummaryImpl implements Message
An 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;
    
Methods Summary
public java.lang.StringgetText()

return
the text of this message.

        return this.text;