001package edu.pdx.cs410J.airline;
002
003import edu.pdx.cs410J.AbstractFlight;
004
005public class Flight extends AbstractFlight {
006  @Override
007  public int getNumber() {
008    return 42;
009  }
010
011  @Override
012  public String getSource() {
013    throw new UnsupportedOperationException("This method is not implemented yet");
014  }
015
016  @Override
017  public String getDepartureString() {
018    throw new UnsupportedOperationException("This method is not implemented yet");
019  }
020
021  @Override
022  public String getDestination() {
023    throw new UnsupportedOperationException("This method is not implemented yet");
024  }
025
026  @Override
027  public String getArrivalString() {
028    throw new UnsupportedOperationException("This method is not implemented yet");
029  }
030}