package resources.room; import resources.Resources; /** * A room serves as the location for sections of classes to take place. A room * has a building, room number, room capacity, room type, required equipment, * and additional comments. A building contains a building number and building * name. A room number locates a room within a building. A room type specifies * either a lecture or lab. Required equipment links with a course to provide a * room with the equipment it needs. Comments are optional statements the * administrator feels like adding. * * @author aakoeppe * */ public abstract class Room extends Resources { public Building building; public int roomNumber; public RoomType type; public Room(Building building, int roomNumber, RoomType type) { super(); } }