/*
 * Created on Feb 11, 2005
 *
 * To change the template for this generated file go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */

/**
 * @author narayans
 *
 * To change the template for this generated type comment go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
public class Product {
	String _partNumber;
	double _partPrice;
	
	

	/**
	 * @return Returns the _partNumber.
	 */
	public String get_partNumber() {
		return _partNumber;
	}
	/**
	 * @param number The _partNumber to set.
	 */
	public void set_partNumber(String number) {
		_partNumber = number;
	}
	/**
	 * @return Returns the _partPrice.
	 */
	public double get_partPrice() {
		return _partPrice;
	}
	/**
	 * @param price The _partPrice to set.
	 */
	public void set_partPrice(double price) {
		_partPrice = price;
	}
}
