package com.cmos.msgframe.common.message;

/**
 * 
 * 文本消息类型
 * 
 * @author yangping5
 * @version [版本号, 2016年5月4日]
 * @see [相关类/方法]
 * @since [产品/模块版本]
 */
public class MsgFTextMessage extends MsgFMessage
{
    /**
     * 注释内容
     */
    private static final long serialVersionUID = 3362032236246155097L;

    private String text;

    /**
     * <默认构造函数>
     */
    public MsgFTextMessage()
    {
        super();
    }

    /**
     * <默认构造函数>
     * 
     * @param text
     *            文本内容
     */
    public MsgFTextMessage(String text)
    {
        super();
        this.text = text;
    }

    public void setText(String text)
    {
        this.text = text;
    }

    public String getText()
    {
        return text;
    }

}
