/**
 * Embellish the interface class with derived classes
 */
public class Rectangle extends Shape{
    private int width;
    private int height;

    public Rectangle(int width, int height){
        this.width = width;
        this.height = height;
    }

    public void colorShape(){
        System.out.print("The rectangle color is ");
        colorImplementor.fillColor();
        for (int i = 0; i < height; i++)
        {
            for (int j = 0; j < width; j++)
            {
                System.out.print("*  ");
            }
            System.out.print("\n\n\n");
        }
    }
}
