Home | History | Annotate | Download | only in data

Lines Matching refs:Movie

23 import com.example.android.tvleanback.model.Movie;
55 private static HashMap<String, List<Movie>> sMovieList;
64 public static HashMap<String, List<Movie>> getMovieList() {
68 public static HashMap<String, List<Movie>> buildMedia(Context ctx, String url)
73 sMovieList = new HashMap<String, List<Movie>>();
91 List<Movie> categoryList = new ArrayList<Movie>();
118 private static Movie buildMovieInfo(String category,
125 Movie movie = new Movie();
126 movie.setId(Movie.getCount());
127 Movie.incrementCount();
128 movie.setTitle(title);
129 movie.setDescription(description);
130 movie.setStudio(studio);
131 movie.setCategory(category);
132 movie.setCardImageUrl(cardImageUrl);
133 movie.setBackgroundImageUrl(bgImageUrl);
134 movie.setVideoUrl(videoUrl);
136 return movie;