FileDocCategorySizeDatePackage
Product.javaAPI DocExample906Wed Apr 05 20:05:26 BST 2006com.oreilly.ajax

Product.java

package com.oreilly.ajax;

public class Product {
	private int productId;
	private String productName;
	private String description;
	private String filename; //location of the graphic
	private float price;
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	public String getFilename() {
		return filename;
	}
	public void setFilename(String filename) {
		this.filename = filename;
	}
	public float getPrice() {
		return price;
	}
	public void setPrice(float price) {
		this.price = price;
	}
	public int getProductId() {
		return productId;
	}
	public void setProductId(int productId) {
		this.productId = productId;
	}
	public String getProductName() {
		return productName;
	}
	public void setProductName(String productName) {
		this.productName = productName;
	}
	
}