Class MovieDatabaseImpl.SortMoviesByReleaseDate

java.lang.Object
edu.pdx.cs410J.rmi.MovieDatabaseImpl.SortMoviesByReleaseDate
All Implemented Interfaces:
Serializable, Comparator<Movie>
Enclosing class:
MovieDatabaseImpl

A comparator that sorts movies based on the year in which they were released. It must be serializable so that it may be sent to the client. It must be static so that it doesn't have a reference to its outer class.