Class LineItem
- java.lang.Object
-
- org.hibernate.testing.orm.domain.retail.LineItem
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetId()OrdergetOrder()ProductgetProduct()intgetQuantity()javax.money.MonetaryAmountgetSubTotal()voidsetId(Integer id)voidsetOrder(Order order)voidsetProduct(Product product)voidsetQuantity(int quantity)voidsetSubTotal(javax.money.MonetaryAmount subTotal)
-
-
-
Method Detail
-
getId
public Integer getId()
-
setId
public void setId(Integer id)
-
getProduct
public Product getProduct()
-
setProduct
public void setProduct(Product product)
-
getQuantity
public int getQuantity()
-
setQuantity
public void setQuantity(int quantity)
-
getSubTotal
public javax.money.MonetaryAmount getSubTotal()
-
setSubTotal
public void setSubTotal(javax.money.MonetaryAmount subTotal)
-
getOrder
public Order getOrder()
-
setOrder
public void setOrder(Order order)
-
-