elementupdatedmsg.java
来自「JAVA网络编程技术内幕一书的源代码」· Java 代码 · 共 24 行
JAVA
24 行
/* * Java Network Programming, Second Edition * Merlin Hughes, Michael Shoffner, Derek Hamner * Manning Publications Company; ISBN 188477749X * * http://nitric.com/jnp/ * * Copyright (c) 1997-1999 Merlin Hughes, Michael Shoffner, Derek Hamner; * all rights reserved; see license.txt for details. */public class ElementUpdatedMsg extends UpdateElementMsg {
protected ID id;
public ElementUpdatedMsg (ID oldID, ID id, Object element) {
super (oldID, element);
this.id = id;
}
public ID getID () {
return id;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?