from Roberto Polli:
wrote a small CalendarComparator class. here a simple usage:
/** sort a Calendar list by date
*
* @param calendars
* @return
*/
public List<Calendar> sortByStartDate(List<Calendar> calendars) {
Collections.sort(calendars, new CalendarComparator());
return calendars;
}
attached the class code
http://caldav4j.googlegroups.com/web/CalendarComparator.java
Peace, R.
Original issue reported on code.google.com by bobbyru...@gmail.com on 28 Nov 2007 at 7:06
Original issue reported on code.google.com by
bobbyru...@gmail.com
on 28 Nov 2007 at 7:06