/* * @topic T10406 Feb 7, 2013 Product Inheritance Demo * @brief class Game extends Dvd */ package hw2; public class Game extends Dvd { protected String rating; // constructor public Game( int code, String description, double price, String publisher, String rating ) { super( code, description, price, publisher ); this.rating = rating; } }//class Game