Package org.primefaces.showcase.domain
Class Sale
- java.lang.Object
-
- org.primefaces.showcase.domain.Sale
-
- All Implemented Interfaces:
Serializable
public class Sale extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLastYearProfit()intgetLastYearSale()StringgetManufacturer()intgetThisYearProfit()intgetThisYearSale()voidsetLastYearProfit(int lastYearProfit)voidsetLastYearSale(int lastYearSale)voidsetManufacturer(String manufacturer)voidsetThisYearProfit(int thisYearProfit)voidsetThisYearSale(int thisYearSale)
-
-
-
Constructor Detail
-
Sale
public Sale()
-
Sale
public Sale(String manufacturer, int lastYearSale, int thisYearSale, int lastYearProfit, int thisYearProfit)
-
-
Method Detail
-
getLastYearProfit
public int getLastYearProfit()
-
setLastYearProfit
public void setLastYearProfit(int lastYearProfit)
-
getLastYearSale
public int getLastYearSale()
-
setLastYearSale
public void setLastYearSale(int lastYearSale)
-
getManufacturer
public String getManufacturer()
-
setManufacturer
public void setManufacturer(String manufacturer)
-
getThisYearProfit
public int getThisYearProfit()
-
setThisYearProfit
public void setThisYearProfit(int thisYearProfit)
-
getThisYearSale
public int getThisYearSale()
-
setThisYearSale
public void setThisYearSale(int thisYearSale)
-
-