Ejemplo n.º 1
0
  public Garage(
      int numberOfWindows, int length, int width, int numberOfCars, Flooring floorCovering) {

    super.setNumberOfFloors(1);
    super.setNumberOfWindows(numberOfWindows);

    this.length = length;
    this.width = width;
    this.numberOfCars = numberOfCars;
    this.floorCovering = floorCovering.name();
  }