/*
 * Airplane.java
 *
 * A blueprint class for representing an airplane.
 */
public class Airplane {

    /*
     * Place your instance variables here.
     */


    /*
     * Complete the header and body of the constructor below.
     */

    public Airplane(__________) {

    }

    /*
     * Complete the header and body of each accessor method below.
     */

    /*
     * getID - returns the identification of the plane.
     */
    public _____ getID(__________) {

    }

    /*
     * isFlying - returns whether the plane is currently in flight.
     */
    public _____ isFlying(__________) {

    }

    /*
     * getMilesFlown - returns the number of miles flown by this plane.
     */
    public _____ getMilesFlown(__________) {

    }

    /*
     * Complete the header and body of each mutator method below.
     */

    /*
     * changeFlightStatus - changes the flight status of the plane.
     */
    public _____ changeFlightStatus(__________) {

    }

    /*
     * addMilesFlown - adds miles flown to the running count for this plane.
     */
    public _____ addMilesFlown(__________) {

    }
}
