package TextShapes; /***** * Box.java * * a class to draw text boxes. * ***/ public class Box { private int hsize; private int vsize; private String message; // constructors Box(int width, int height, String message){ this.hsize = width; // or you could write just "hsize=width" this.vsize = height; this.message = message; } // This should draw the Box on the screen. public void draw(){ drawLeftMargin(); drawTopOrBottom(); for (int row=0; row