DWR is the way for AJAX implementation

源代码在线查看: message.java

软件大小: 2157 K
上传用户: moxcki
关键词: implementation AJAX DWR for
下载地址: 免注册下载 普通下载 VIP

相关代码

				package org.getahead.dwrdemo.chat;								/**				 * A POJO that represents a typed message				 * @author Joe Walker [joe at getahead dot ltd dot uk]				 */				public class Message				{				    /**				     * @param newtext the new message text				     */				    public Message(String newtext)				    {				        text = newtext;								        if (text.length() > 256)				        {				            text = text.substring(0, 256);				        }				    }								    /**				     * @return the message id				     */				    public long getId()				    {				        return id;				    }								    /**				     * @return the message itself				     */				    public String getText()				    {				        return text;				    }								    /**				     * When the message was created				     */				    private long id = System.currentTimeMillis();								    /**				     * The text of the message				     */				    private String text;				}							

相关资源