// Name: // Lab Section: // Primary TA: // Email: // Date: // CS101 Lab 7 // RoomList.java // The code for this class must be included in your Lab 7 design public class RoomList extends List { public RoomList(Room r, RoomList next) { } public Room getRoom() { return null; } public RoomList getRestRooms() { return null; } public Room findRoom(int n) { // Hint: find(int) return null; } }