I'm working on an application where I need to maintain times from different location. I'm using Date, Timezone classes in Java. My question is - does the Timezone class know details about the Daylight Savings Time? Like if the Timezone is passed some time zone, does it return the correct time considering DST?
EDIT:
Follow up - Why is inDaylightTime() implemented as abstract and can only be used with SimpleTimeZone where you specify the start/end daylight times?