public class Rectangle extends AShape { public Rectangle(Color color, double xLoc, double yLoc) { super(color, xLoc, yLoc); } }