毕业设计(模拟网络聊天工具而设计)

源代码在线查看: response.java

软件大小: 1098 K
上传用户: pangbo888
关键词: 毕业设计 模拟 网络
下载地址: 免注册下载 普通下载 VIP

相关代码

				package qq.entity;
				
				import java.io.*;
				
				public class Response implements Serializable{
					private RequestType type;//响应类型
					private Serializable value;//响应的值
					private static final long serialVersionUID = 12071113985L;
					
					public Response(RequestType type){
						this.type=type;
					}
					public void setData(Serializable value){
						this.value=value;
					}
					public Serializable getData(){
						return value;
					}
					public RequestType getType(){
						return type;
					}
				}
							

相关资源