
/**
 Interface for a rectangle to be drawn on the screen. 
*/
public interface RectangleInterface extends FigureInterface
{
	/**
	 Sets the rectangle's dimensions. 
	*/
    public void set(int newHeight, int newWidth);
}




