DateField

The DateField can be constructed to a certain time zone with the method TimeZone.getTimeZone. The date presented to the user is calculated based on the time zone from the UTC date value passed to the date field. For example:

DateField df = new DateField("Helsinki time",
                             DateField.DATE_TIME, 
                             TimeZone.getTimeZone("GMT+02:00"));

df.setTime(0);