/*
 * @topic T10402 Feb 7, 2013 Product Inheritance Demo
 * @brief class Product with code, description, price attributes
*/

package hw2;

public class Product {
    protected int code;
    protected String description;
    protected double price;

    // specific constructor
    public Product( int code, String description, double price )
    {
        this.code = code;
        this.description = description;
        this.price = price;
    }
}//class Product