Class Car
- java.lang.Object
-
- ejava.examples.orm.core.annotated.Car
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimal
getCost()
long
getId()
String
getMake()
String
getModel()
int
getYear()
void
setCost(BigDecimal cost)
void
setMake(String make)
void
setModel(String model)
void
setYear(int year)
String
toString()
-
-
-
Field Detail
-
id
private long id
-
make
private String make
-
model
private String model
-
year
private int year
-
cost
private BigDecimal cost
-
-
Method Detail
-
getId
public long getId()
-
getMake
public String getMake()
-
setMake
public void setMake(String make)
-
getModel
public String getModel()
-
setModel
public void setModel(String model)
-
getYear
public int getYear()
-
setYear
public void setYear(int year)
-
getCost
public BigDecimal getCost()
-
setCost
public void setCost(BigDecimal cost)
-
-