public class NewReleasePrice extends Price { static public final NewReleasePrice PRICE = new NewReleasePrice(); private NewReleasePrice() { } public int getPriceCode() { return Movie.NEW_RELEASE; } public double getCharge(int daysRented) { return daysRented*3; } public int getFrequentRenterPoints(int daysRented) { return (daysRented > 1) ? 2 : 1; } }