package caltool.model.admin.user; import mvp.Model; /**** * * Class Admin is the top-level model class in the regular-user admin package. * It defines the objects and operations related to accessing the user, group, * room, and global options databases of the Calendar Tool. *

* In contrast to this user-level admin class, the * CalendarToolAdministration class is the top-level for the larger caltool * admin program, which runs as a separate application from the regular-user * application. See its documentation for further information. * * @author Gene Fisher (gfisher@calpoly.edu) * @version 1feb13 * */ public class Admin extends Model { public Admin(mvp.View view) { super(view); } }