用struts,ajax实现的聊天室

源代码在线查看: message.java

软件大小: 3154 K
上传用户: pjamytian
关键词: struts ajax
下载地址: 免注册下载 普通下载 VIP

相关代码

				package bean;
				
				public class Message {
					private String sayUser;
					private String receiveUser;
					private String context;
					private long time;
					private String color;
					private String face;
					private String type;
					public String getColor() {
						return color;
					}
					public void setColor(String color) {
						this.color = color;
					}
					public String getContext() {
						return context;
					}
					public void setContext(String context) {
						this.context = context;
					}
					public String getFace() {
						return face;
					}
					public void setFace(String face) {
						this.face = face;
					}
					public String getReceiveUser() {
						return receiveUser;
					}
					public void setReceiveUser(String receiveUser) {
						this.receiveUser = receiveUser;
					}
					public String getSayUser() {
						return sayUser;
					}
					public void setSayUser(String sayUser) {
						this.sayUser = sayUser;
					}
					public String getType() {
						return type;
					}
					public void setType(String type) {
						this.type = type;
					}
					public long getTime() {
						return time;
					}
					public void setTime(long time) {
						this.time = time;
					}
					
					
				
				}
							

相关资源