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