public MoviePart(Movie movie, int partIndex, int partCount) { super( movie.getName(), movie.getAliasNames(), movie.getYear(), movie.getImdbId(), movie.getTmdbId(), movie.getLanguage()); this.partIndex = partIndex; this.partCount = partCount; }
@Override public int compare(final Movie movie1, final Movie movie2) { // TODO Auto-generated method stub return movie1.getName().compareTo(movie2.getName()); }