- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathImdbReader.java
More file actions
Latest commit
23 lines (21 loc) · 649 Bytes
/
Copy pathImdbReader.java
File metadata and controls
23 lines (21 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
importjava.util.List;
/**
6 * Reads events from the {@link ImdbParser}.
7 */
publicinterfaceImdbReader
{
/**
* Creates new movies with specified <code>title</code> and
* <code>year</code> from a {@link MovieData} list.
* Every movie will be indexed.
* @param movieList movies to create and index
*/
voidnewMovies( List<MovieData> movieList );
/**
* Creates new actors specifying what movies the actors acted in
* from a {@link ActorData} list.
* Every actor will be indexed.
* @param actorList actors to create and index
*/
voidnewActors( List<ActorData> actorList );
}