public Airport(int capa)
 {
     planes   = new ArrayList();
     capacity = capa;
     weather  = new Weather();
 }
 public Airport(Weather thisWeather)
 {
     planes   = new ArrayList();
     capacity = 20;
     weather  = thisWeather;
 }
 // Constructors
 public Airport()
 {
     planes   = new ArrayList();
     capacity = 20;
     weather  = new Weather();
 }