Yes, both [collections] and [lang] now have the java.util.Collections style of naming in their DEVELOPERS-GUIDE.html file. I would say that this is just applying the same practice to [io]. Probably should add a DEV-GUIDE to [io] ;-)
Stephen From: "Henri Yandell" <[EMAIL PROTECTED]> > Collections.synchronisedMap, unmodifiableList etc and the various classes > of these type in Commons [lots in Collections and Lang, for example > ComparatorUtils.reversedComparator()] all seem to use the nullFileFilter > style. > > I dunno if precedence counts here, but as its a unique decorator [ie) a > decorator that decorates nothing, a source], it doesn't seem to be an > immediate candidate for Bean style. > > Hen > > ============ > > From: Jon Scott Stevens <[EMAIL PROTECTED]> Content-type: text/plain; > > on 2002/12/25 2:16 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > wrote: > > > - FileFilter filter = new NullFileFilter(); > > + FileFilter filter = FileFilterUtils.nullFileFilter(); > > This seems like bad naming...shouldn't it be: > > FileFilter filter = FileFilterUtils.getNullFileFilter(); > > ? > > -jon > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
