[Nice-commit] Nice/debian changelog,1.229,1.230
Brought to you by:
bonniot
From: <bo...@us...> - 2003-11-25 12:34:39
|
Update of /cvsroot/nice/Nice/debian In directory sc8-pr-cvs1:/tmp/cvs-serv13201/debian Modified Files: changelog Log Message: There is now complete support for serialization: readObject, writeObject, readResolve and writeReplace methods can be written and be recognized by the serialization process. Index: changelog =================================================================== RCS file: /cvsroot/nice/Nice/debian/changelog,v retrieving revision 1.229 retrieving revision 1.230 diff -C2 -d -r1.229 -r1.230 *** changelog 23 Nov 2003 16:25:17 -0000 1.229 --- changelog 25 Nov 2003 12:34:36 -0000 1.230 *************** *** 5,9 **** instance: println("x has value "x" and y has value "y); ! * A custom serialVersionUID can be set for Nice classes using a final field. class X implements java.io.Serializable { final long serialVersionUID = 123456789L; --- 5,12 ---- instance: println("x has value "x" and y has value "y); ! * There is now complete support for serialization: ! readObject, writeObject, readResolve and writeReplace methods can be ! written and be recognized by the serialization process. ! A custom serialVersionUID can be set for Nice classes using a final field: class X implements java.io.Serializable { final long serialVersionUID = 123456789L; |