
/**
 * Write a description of class MySquare here.
 * 
 * @author Michael Rivers
 * @version April 18th 2006
 */
import java.awt.*;
import javax.swing.*;
public class MySquare extends MyRectangle
{
    public MySquare()
    {
        super();
    }

    //Draw a square using MyRectangle
    public MySquare(int x, int y, int sideLength, Color shapeColor)
    {
        super(x,y,sideLength,sideLength,shapeColor);
    }
    
    public MySquare(int x, int y, int sideLength, Color shapeColor, boolean bFill)
    {
        super(x,y,sideLength,sideLength,shapeColor,bFill);
    }
    
    public MySquare(int x, int y, int sideLength)
    {
        super(x,y,sideLength,sideLength);
    }
    
    public MySquare(int x, int y, int sideLength, boolean bFill)
    {
        super(x,y,sideLength,sideLength,bFill);
    }
}

