/** * A subclass of City that lays out a large school * as specified by the program 3 assignment * * @author Mary Elaine Califf * */ public class PflugervilleSchool 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 PflugervilleSchool() { super(12,12); this.makeRectangle(1,1,3,3); this.makeRectangle(1,7,3,3); this.makeRectangle(1,5,3,1); this.makeRectangle(7,1,3,3); this.makeRectangle(7,7,3,3); this.makeRectangle(5,1,1,3); this.makeRectangle(5,7,1,3); this.makeRectangle(7,5,3,1); this.makeRectangle(5,5,1,1); } }