RE: [collections] New Collection

2003-09-20 Thread Janek Bogucki
On Fri, 2003-09-19 at 12:51, Oxley, David wrote: > Ok. The list won't accept the attachment. If anyone wants to review it, I > will email it to you directly. > Dave. You could attach it to a bugzilla entry which might be easier. -Janek

RE: [collections] New Collection

2003-09-19 Thread Oxley, David
Ok. Initial patch in Bugzilla: http://issues.apache.org/bugzilla/show_bug.cgi?id=23270 Dave > -Original Message- > From: Shapira, Yoav [mailto:[EMAIL PROTECTED] > Sent: Friday, September 19, 2003 2:11 PM > To: Jakarta Commons Developers List > Subject: RE: [collections]

RE: [collections] New Collection

2003-09-19 Thread Shapira, Yoav
7;Jakarta Commons Developers List' >Subject: RE: [collections] New Collection > >Ok. The list won't accept the attachment. If anyone wants to review it, I >will email it to you directly. >Dave. > >-Original Message- >From: Oxley, David [mailto:[EMAIL PROTECTED] >

RE: [collections] New Collection

2003-09-19 Thread Oxley, David
Title: RE: [collections] New Collection Sorry, my patch went missing. Too big? Anyway here it is gzipped. Dave -Original Message- From: Oxley, David [mailto:[EMAIL PROTECTED]] Sent: Friday, September 19, 2003 1:16 PM To: '[EMAIL PROTECTED]' Subject: RE: [collections] New

RE: [collections] New Collection

2003-09-19 Thread Oxley, David
Title: RE: [collections] New Collection That's what I meant, cheers. I found another collection that seems to be a better starting point, org.apache.commons.collections.DoubleOrderedMap. So far I have made a couple of changes to this class: 1. Changed it to use Comparator's if

RE: [collections] New Collection

2003-09-12 Thread Arun Thomas
: Re: [collections] New Collection The only problem with SequencedHashMap is that its ordering is based upon the insertion order, not the values of the objects added to it or some Comparator, such as is needed (at least that's how I interpret "ordering by value" from the origina

Re: [collections] New Collection

2003-09-12 Thread james
age - From: "Arun Thomas" <[EMAIL PROTECTED]> To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]> Sent: Friday, September 12, 2003 12:04 PM Subject: RE: [collections] New Collection You might want to take a look at org.apache.commons.collections.Sequence

RE: [collections] New Collection

2003-09-12 Thread Arun Thomas
You might want to take a look at org.apache.commons.collections.SequencedHashMap which combines, for the most part, the functions of list and map (insertElementAt()) is not available - how does one insert a key, when the value should be at a specific position? The transactional support is def