package caltool.model.caldb; import java.util.*; /* * * UserCalendars is the list of public calendars for all registered users. The * list consists of calendar file names, not calendars themselves. In this * way, the list of user calendars is modeled as a distributed collection of * user calendar files, not as a centralized database of calendars. This * allows users to retain autonomous control of their own individual calendars. * */ public class UserCalendars { /*-* * Derived data field */ /** The list data representation is abstract for now */ protected Collection data; }