/** * This is a javadoc comment for the class * Square. Square can draw itself using * nothing more than printable characters. */ class Square { int size; /** * This is a javadoc comment for the * constructor. * Square needs a size, please give it * an integer size. */ Square(int x) { size = x; } /** * Draw will generate a character based * representation of the Square by printing * characters to System.out */ public void Draw() { for (int i=0;i