[Nice-commit] Nice/web manual.xml,1.34,1.35
Brought to you by:
bonniot
From: <xo...@us...> - 2004-02-04 01:44:32
|
Update of /cvsroot/nice/Nice/web In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv740/web Modified Files: manual.xml Log Message: Minor corrections. Index: manual.xml =================================================================== RCS file: /cvsroot/nice/Nice/web/manual.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** manual.xml 2 Feb 2004 22:39:47 -0000 1.34 --- manual.xml 3 Feb 2004 19:11:07 -0000 1.35 *************** *** 325,329 **** however. In Nice, an interface doesn't really "contain" anything at all, it's just a marker. ! Just as <literal>java.util.Serializable</literal> is just a tag to tell Java that it's okay to use serialization on instances of a class, all Nice interfaces are really tags. --- 325,329 ---- however. In Nice, an interface doesn't really "contain" anything at all, it's just a marker. ! Just as <literal>java.io.Serializable</literal> is just a tag to tell Java that it's okay to use serialization on instances of a class, all Nice interfaces are really tags. *************** *** 670,674 **** <T> int containsHowMany(?List<T> list); ! <T> containsHowMany(list) = list.notNull.size(); containsHowMany(null) = 0; --- 670,674 ---- <T> int containsHowMany(?List<T> list); ! <T> containsHowMany(List list) = list.size(); containsHowMany(null) = 0; |