Скачиваний:
62
Добавлен:
15.06.2014
Размер:
743 б
Скачать
package products;

public class FoodProduct extends BaseProduct
{
private String foodproduct_bruttoweight;
private String foodproduct_nettoweight;

//base constructor
FoodProduct()
{
super();
foodproduct_bruttoweight = "no data";
foodproduct_nettoweight = "no data";
}

//get methods
public String getFoodProductBruttoWeight()
{
return foodproduct_bruttoweight;
}

public String getFoodProductNettoWeight()
{
return foodproduct_nettoweight;
}

//set methods
public void setFoodProductBruttoWeight(String bruttoweight)
{
foodproduct_bruttoweight = bruttoweight;
}

public void setFoodProductNettoWeight(String nettoweight)
{
foodproduct_nettoweight = nettoweight;
}
}
Соседние файлы в папке products