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