Box.java
// An instance of class Box is a rectangle.
public int xUpperLeft; // The box has an upper left corner at
public int yUpperLeft; // position (xUpperLeft, yUpperLeft).
public int width; // width of box
public int height; // height of box
public Color color; // color of box