import java.awt.Color;
import java.sql.Date;

/*
 * Created on Apr 19, 2007
 *
 * 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 Vehicle {
	private String vinNumber, tagNumber, make, model;

	private Date year;

	private int numberOfDoors, numberOfAirbags;

	private double engineVolume, horsePower;

	private String pointOfAssembly;

	Color bodyColor;

	/**
	 * @return the bodyColor
	 */
	public Color getBodyColor() {
		return bodyColor;
	}

	/**
	 * @param bodyColor the bodyColor to set
	 */
	public void setBodyColor(Color bodyColor) {
		this.bodyColor = bodyColor;
	}

	/**
	 * @return the engineVolume
	 */
	public double getEngineVolume() {
		return engineVolume;
	}

	/**
	 * @param engineVolume the engineVolume to set
	 */
	public void setEngineVolume(double engineVolume) {
		this.engineVolume = engineVolume;
	}

	/**
	 * @return the horsePower
	 */
	public double getHorsePower() {
		return horsePower;
	}

	/**
	 * @param horsePower the horsePower to set
	 */
	public void setHorsePower(double horsePower) {
		this.horsePower = horsePower;
	}

	/**
	 * @return the make
	 */
	public String getMake() {
		return make;
	}

	/**
	 * @param make the make to set
	 */
	public void setMake(String make) {
		this.make = make;
	}

	/**
	 * @return the model
	 */
	public String getModel() {
		return model;
	}

	/**
	 * @param model the model to set
	 */
	public void setModel(String model) {
		this.model = model;
	}

	/**
	 * @return the numberOfAirbags
	 */
	public int getNumberOfAirbags() {
		return numberOfAirbags;
	}

	/**
	 * @param numberOfAirbags the numberOfAirbags to set
	 */
	public void setNumberOfAirbags(int numberOfAirbags) {
		this.numberOfAirbags = numberOfAirbags;
	}

	/**
	 * @return the numberOfDoors
	 */
	public int getNumberOfDoors() {
		return numberOfDoors;
	}

	/**
	 * @param numberOfDoors the numberOfDoors to set
	 */
	public void setNumberOfDoors(int numberOfDoors) {
		this.numberOfDoors = numberOfDoors;
	}

	/**
	 * @return the pointOfAssembly
	 */
	public String getPointOfAssembly() {
		return pointOfAssembly;
	}

	/**
	 * @param pointOfAssembly the pointOfAssembly to set
	 */
	public void setPointOfAssembly(String pointOfAssembly) {
		this.pointOfAssembly = pointOfAssembly;
	}

	/**
	 * @return the tagNumber
	 */
	public String getTagNumber() {
		return tagNumber;
	}

	/**
	 * @param tagNumber the tagNumber to set
	 */
	public void setTagNumber(String tagNumber) {
		this.tagNumber = tagNumber;
	}

	/**
	 * @return the vinNumber
	 */
	public String getVinNumber() {
		return vinNumber;
	}

	/**
	 * @param vinNumber the vinNumber to set
	 */
	public void setVinNumber(String vinNumber) {
		this.vinNumber = vinNumber;
	}

	/**
	 * @return the year
	 */
	public Date getYear() {
		return year;
	}

	/**
	 * @param year the year to set
	 */
	public void setYear(Date year) {
		this.year = year;
	}

}
