Skip to content

Instantly share code, notes, and snippets.

@nikolajakshic
Created March 7, 2018 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikolajakshic/8bb60b2e691a5e97652a9cfaaf81ae27 to your computer and use it in GitHub Desktop.
Save nikolajakshic/8bb60b2e691a5e97652a9cfaaf81ae27 to your computer and use it in GitHub Desktop.
public class Movie {
private String title;
private String genre;
private int year;
// State of the item
private boolean expanded;
public Movie(String title, String genre, int year) {
this.title = title;
this.genre = genre;
this.year = year;
}
// Getters and setters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment