/* Movie is just a simple data class. There are three kinds of movies: * regular, children's and new releases. */ class Movie { public static final int CHILDRENS = 2; public static final int REGULAR = 0; public static final int NEW_RELEASE = 1; private String title; private int priceCode; public Movie(String title, int priceCode) { this.title = title; this.priceCode = priceCode; } public int getPriceCode() { return priceCode; } public void setPriceCode(int arg) { priceCode = arg; } public String getTitle() { return title; } }