-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMovieDataReaderInterface.java
More file actions
20 lines (14 loc) · 1.4 KB
/
Copy pathMovieDataReaderInterface.java
File metadata and controls
20 lines (14 loc) · 1.4 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;
import java.util.zip.DataFormatException;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
// --== 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 MovieDataReaderInterface {
public List<MovieInterface> readDataSet(Reader inputFileReader) throws FileNotFoundException, IOException, DataFormatException;
}