package scheduler.RoomDB; import java.util.Collection; /** * * The TempRoomDB is the temporary databses for each schedule. The * contain all of the avaiable rooms for the quarters schedule, along with the times that they are avaiable. * * @author * @version * **/ public class RoomDB { /** Default Constructor **/ public RoomDB() { } /** This operation adds an entry to the database. **/ protected RoomDB addEntry(RoomDB[] rdb, RoomEntry re) { return null; } /** This operation removes the old entry and adds a new entry to the database. **/ protected RoomDB changeEntry(RoomDB[] rdb, RoomEntry oldre, RoomEntry newre) { return null; } /** This operation removes an entry from the database by building and number. **/ protected RoomDB removeEntry(RoomDB[] rdb, RoomEntry re) { return null; } protected Collection data; }