FileDocCategorySizeDatePackage
Message.javaAPI DocExample229Sun Sep 02 14:59:04 BST 2001com.oreilly.forum.domain

Message.java

package com.oreilly.forum.domain;

/**
 * Represent a message, including the text.
 */
public interface Message extends MessageSummary {
    /**
     * @return the text of this message.
     */
    String getText();
}