/** * A subclass of City that lays out a large school * as specified by the program 3 assignment * * @author Mary Elaine Califf * */ public class AustinSchool extends RectangleCity { /** * Default constructor sets the city to make the entire school * visible and then creates the various rectangles that make up * the school layout */ public AustinSchool() { super(15,15); this.makeRectangle(1,1,5,5); this.makeRectangle(1,9,5,5); this.makeRectangle(1,7,5,1); this.makeRectangle(9,1,5,5); this.makeRectangle(9,9,5,5); this.makeRectangle(7,1,1,5); this.makeRectangle(7,9,1,5); this.makeRectangle(9,7,5,1); this.makeRectangle(7,7,1,1); } }