Esempio n. 1
0
 public Airport(int capa)
 {
     planes   = new ArrayList();
     capacity = capa;
     weather  = new Weather();
 }
Esempio n. 2
0
 public Airport(Weather thisWeather)
 {
     planes   = new ArrayList();
     capacity = 20;
     weather  = thisWeather;
 }
Esempio n. 3
0
 // Constructors
 public Airport()
 {
     planes   = new ArrayList();
     capacity = 20;
     weather  = new Weather();
 }