private static final Logger LOG = Logger.getLogger(AbstractFormAction.class);
public Collection<FormTimezone> getTimezones() {
Set<FormTimezone> all = new HashSet<FormTimezone>();
for (DateTimeZone thisValue : TimeZoneSource.getAllTimeZones()) {
all.add(new FormTimezone(thisValue));
}
List<FormTimezone> toSort = new ArrayList<FormTimezone>(all);
Collections.sort(toSort, new Comparator<FormTimezone>() {