/*
 * FiguresArea.java
 *
 *
 * (c) DIT-UC3M 2008
 *
 */

public class FiguresArea {

  /** The array of figures */
  Figure figures[] = null;

  /** Constructor of the class with a fixed number of figures. */
  public FiguresArea(int figuresNumber) {
  }

  /** Calculates the total area of the array figures. */
  public double totalArea() {
    return 0.0;
  }

  /** Adds a new figure in the first empty position of the figures array. */
  public void addFigure(Figure f) {
  }

  /** Prints a list with the array figures. */
  public void print() {
  }

  /** Main Program */
  public static void main(String args[]) throws Exception {
  }
}
