// Name: // Lab Section: // Primary TA: // Email: // Date: // CS101 Lab 7 // Hall.java import cs101.canvas.*; public class Hall { /* * This method must decide if it's OK to open up the doors of the rooms * forming this hall. * Then, the method should open the hallway by calling openDoors * Even though openDoors is in the subclass of Hall (i.e., VertHall or * HorizHall), the right one will be called depending on which kind * of hall it is. * Finally, the method returns true if it did open up the hallway, * or false otherwise. */ public boolean openedUpHallway() { // fill this in return false; } }