Re: Populating a Pojo with two ArrayLists

2009-08-29 Thread Zart Colwin
Because there is a big difference between two lists of atomic data and a single list of composite data. On one hand you allocate only two objects while on the other hand you allocate many small objects who have absolutely no business or algorithmic value. The framework should provides the functi

Re: Populating a Pojo with two ArrayLists

2009-08-19 Thread Richard Bibb
; > class DateValuePair > { > private Date date; > > private Double value; > > ... getter, setter > } > > and query for List? > > -- View this message in context: http://www.nabble.com/Populatin

Re: Populating a Pojo with two ArrayLists

2009-08-19 Thread Ingmar Lötzsch
> I'm trying to populate a pojo with two array lists and my code doesn't do > what I intended > > The pojo has two arrayLists as memebers one called 'dates' the other > 'values' Why can't you create class DateValuePair { private Date date; private Double value; ... gett

Populating a Pojo with two ArrayLists

2009-08-19 Thread Richard Bibb
d is probably wrong. -- View this message in context: http://www.nabble.com/Populating-a-Pojo-with-two-ArrayLists-tp25041366p25041366.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com. - To unsubscrib