Regarding jFreeChart's Millisecond,
How can I get a java.util.Date object from a Millisecond
instance?
From the docs, it only seems possible to subtract the milliseconds within Millisecond
.
Since a Millisecond
object is constructed like so:
Millisecond ms = new Millisecond(
millisec,
second,
minute,
hour,
day,
month,
year);
I should be able to extract a valid Date
object as well.
Edit
I need a Date
object that gives back the exact time up to the millisecond accurate.
Does .getStart()
provide this?
[ANSWER]: YES