-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMovieInterface.java
More file actions
20 lines (16 loc) · 1.59 KB
/
Copy pathMovieInterface.java
File metadata and controls
20 lines (16 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.util.List;
// --== CS400 File Header Information ==--
// Author: CS400 Course Staff
// Email: heimerl@cs.wisc.edu / dahl@cs.wisc.edu
// Notes: This interface is part of the starter archive for Projecct One
// in spring 2021.
public interface MovieInterface extends Comparable<MovieInterface> {
public String getTitle();
public Integer getYear();
public List<String> getGenres();
public String getDirector();
public String getDescription();
public Float getAvgVote();
// from super interface Comparable
public int compareTo(MovieInterface otherMovie);
}