public class BasicRectangle { int width; int height; public BasicRectangle(int initWidth, int initHeight) { width = initWidth; height = initHeight; } public void setWidth(int newWidth ) { width = newWidth; } public void setHeight(int newHeight ) { height = newHeight; } public int getWidth() { return width; } public int getHeight() { return height; } public String toString() { return "width: "+width+", height: "+height; } }