Hi,
Looking at your UI.java constructor I see this:
this
.airplanes=airplanes;
Now your constructor declarator is this:
public
UI(Scanner reader, Airplanes airplane, Flights flights) {
airplane != airplanes so basically you are saysin this.airplanes = this.airplanes which is why airplanes is null :)
Best regards
Joni