Search found 3 matches
- Thu May 29, 2008 8:56 am
- Forum: JFreeChart
- Topic: DateRange immutable?
- Replies: 9
- Views: 8585
Thank you David! I'm sorry to disturb you once again - when I had some more time yesterday I went through org.jfree.data.time. 1. I noticed that SimpleTimePeriod has the same problem. 2. This might only be a less important issue (I guess), but the Day class contains fields that are defined as e.g.: ...
- Wed May 28, 2008 12:55 pm
- Forum: JFreeChart
- Topic: DateRange immutable?
- Replies: 9
- Views: 8585
FixedMillisecond as well
Hi again
FixedMillisecond crossed my way as well. It seems that the constructor public FixedMillisecond(Date time) and public Date getTime() also have problems fulfilling that the FixedMillisecond class is immutable as stated by the comment of the class.
Thank you for reading!
FixedMillisecond crossed my way as well. It seems that the constructor public FixedMillisecond(Date time) and public Date getTime() also have problems fulfilling that the FixedMillisecond class is immutable as stated by the comment of the class.
Thank you for reading!

- Tue May 27, 2008 2:17 pm
- Forum: JFreeChart
- Topic: DateRange immutable?
- Replies: 9
- Views: 8585
DateRange immutable?
Hi Frankly speaking I am new to JFreeChart, but to me it 'seems' as a bug when DateRange claims to be immutable when the public constructor DateRange (Date lower, Date upper) is using these Date objects when calling either getLowerDate or getUpperDate since Date is not immutable. Two ways to solve t...