airspace
Interface AirControlInterface

All Known Implementing Classes:
AirControl

public interface AirControlInterface

Interface the class AirControl should implement.

Version:
1
Author:
Potkuri-group

Method Summary
 int getArrivedPlanes()
          Returns the number of arrived Planes.
 int getNumberOfPlanes()
          Returns the number of Planes currently on the map.
 java.util.ArrayList<Plane> getPlanes()
          Returns a list of the Planes currently on the map.
 void update()
          Calls the controlPlanes method in AirControl.
 

Method Detail

getArrivedPlanes

int getArrivedPlanes()
Returns the number of arrived Planes.

Returns:
number of arrived Planes

getNumberOfPlanes

int getNumberOfPlanes()
Returns the number of Planes currently on the map.

Returns:
number of Planes

getPlanes

java.util.ArrayList<Plane> getPlanes()
Returns a list of the Planes currently on the map.

Returns:
a list of the Planes

update

void update()
Calls the controlPlanes method in AirControl.