You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(25) |
Dec
(39) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
(1) |
Mar
(61) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <the...@us...> - 2003-11-18 19:57:43
|
Update of /cvsroot/junk/junk/WEB-INF/classes/junk/util In directory sc8-pr-cvs1:/tmp/cvs-serv18877 Modified Files: NameOnline.java Log Message: made it BETTER Index: NameOnline.java =================================================================== RCS file: /cvsroot/junk/junk/WEB-INF/classes/junk/util/NameOnline.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** NameOnline.java 17 Nov 2003 20:45:13 -0000 1.3 --- NameOnline.java 18 Nov 2003 19:57:40 -0000 1.4 *************** *** 2,6 **** * juNK - a file search system for smb shares * ! * Copyright 2003 by Uwe van Heesch (tyron_E at users dot sf dot net), Marcus Proest (theevilflow at users dot sf dot net) * * This file is part of junk (java usefull net kollektor). --- 2,7 ---- * juNK - a file search system for smb shares * ! * Copyright 2003 by Uwe van Heesch (tyron_E at users dot sf dot net), ! * Marcus Proest (theevilflow at users dot sf dot net) * * This file is part of junk (java usefull net kollektor). *************** *** 28,32 **** /** Bean for name and online status * ! *@author Uwe van Heesch *@author Marcus Proest (theevilflow at users dot sf dot net) *@version 0.1 --- 29,33 ---- /** Bean for name and online status * ! *@author Uwe van Heesch (tyron_E at users dot sf dot net) *@author Marcus Proest (theevilflow at users dot sf dot net) *@version 0.1 *************** *** 78,89 **** /** getter ! * @return online status null = false */ public Boolean getOnline() { ! if (online != null) { ! return this.online; ! } else { ! return Boolean.FALSE; ! } } } --- 79,87 ---- /** getter ! * @return online status, or <code>Boolean.FALSE</code> ! * if it is <code>null</code> */ public Boolean getOnline() { ! return (online != null) ? this.online : Boolean.FALSE; } } |