FileDocCategorySizeDatePackage
Car.javaAPI DocHibernate 3.2.51057Tue Dec 12 16:22:26 GMT 2006org.hibernate.test.entitymode.dom4j.many2one

Car

public class Car extends Object implements Serializable
author
Paco Hernández

Fields Summary
private long
id
private String
model
private CarType
carType
private Set
carParts
Constructors Summary
Methods Summary
public java.util.SetgetCarParts()

		return carParts;
	
public CarTypegetCarType()

return
Returns the carType.

	
	    	 
	   
		return carType;
	
public longgetId()

return
Returns the id.

		return id;
	
public java.lang.StringgetModel()

return
Returns the model.

		return model;
	
public voidsetCarParts(java.util.Set carParts)

		this.carParts = carParts;
	
public voidsetCarType(CarType carType)

param
carType The carType to set.

		this.carType = carType;
	
public voidsetId(long id)

param
id The id to set.

		this.id = id;
	
public voidsetModel(java.lang.String model)

param
model The model to set.

		this.model = model;