package caldb;

import java.util.Collection;
import schedule.Calendar;
import admin.*;
import options.GlobalOptions;
import options.UserOptions;

/**
 * A user calendar is named, with its own set of options.  It extends the
 * Calendar object, which contains the collection of scheduled items.
 */
abstract class UserCalendar extends Calendar {
    String userName;
    UserOptions options;
}