/**
 * Defines red squares.
 *
 * @author TK Rogers
 * @version 3-09-11
 */
import java.awt.* ;
public class RedSquare extends Square {
    RedSquare ( ) {
        super ( Color.RED ) ;
    }
   
    // The method below overrides the method
    // with the same namein the super class
    // It returns the area in square ft.
    public double areaCalculator ( ) {
        return ( side1 * side2 / 144.0 ) ; 
    }
}