软件大小: | 64 K | ||
上传用户: | lqlm521 | ||
关键词: | 111213141516 javaP2P 源代码 | ||
下载地址: | 免注册下载 普通下载 |
相关代码 |
|
import net.jini.entry.AbstractEntry; public class Message extends AbstractEntry { public String to; public String from; public String text; public Message() { this(null,null,null); } public Message(String to, String from, String text) { super(); this.to = to; this.from = from; this.text = text; } }
相关资源 |
|