/**
  * Creates a new Area identified by the given location
  *
  * @param location
  * @param sector not <code>null</code>
  */
 public SimpleArea(final Point location, final Sector sector) {
   this.location = location;
   this.sector = sector;
   sector._addArea(this);
 }