reservations
Interface Airport


public interface Airport

A class implementing the Airport interface will provide these pieces of identifying information.


Method Summary
 java.lang.String getCity()
          Returms the name of the city that this airport is associated with.
 java.lang.String getCode()
          Returns an identifying code that uniquely identifies a particular Airport.
 java.lang.String getState()
          Returms the name of the sate/province that this airport is associated with.
 

Method Detail

getCode

public java.lang.String getCode()
Returns an identifying code that uniquely identifies a particular Airport.


getCity

public java.lang.String getCity()
Returms the name of the city that this airport is associated with.


getState

public java.lang.String getState()
Returms the name of the sate/province that this airport is associated with.