示例#1
0
 public ArrayList<Event> getEventsForWeek(int y, int start, int month) throws SQLException {
   Date startDate = new Date(y, month, start);
   ArrayList<Event> result = new ArrayList<Event>(db.getEventsForWeek(eventTable, startDate));
   return result;
 }