Package no.ntnu.idatt1002.demo.data
Class ShoppingListItem
java.lang.Object
no.ntnu.idatt1002.demo.data.Item
no.ntnu.idatt1002.demo.data.ShoppingListItem
- All Implemented Interfaces:
Storable
- Direct Known Subclasses:
InventoryItem
,RecipeIngredient
This class is a simple bean for a Shopping list item. This is an item with a
quantity and a unit.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionShoppingListItem
(int shoppingListItemId, int itemId, String name, String category, String allergy, int quantity, String unit) Constructor for the ShoppingListItem class.ShoppingListItem
(int itemId, String name, String category, String allergy, int quantity, String unit) Constructor for the ShoppingListItem class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the attribute names of the shopping list item.Returns the attributes of the shopping list item as saved in the database.int
getId()
Returns the id of the shopping list item.Returns the name of the id.int
Getter method for the quantity of the shopping list item.int
getUnit()
Getter method for the unit of the shopping list item.Methods inherited from class no.ntnu.idatt1002.demo.data.Item
getAllergy, getCategory, getItemId, getName, toString
-
Field Details
-
shoppingListItemId
private int shoppingListItemId -
quantity
private final int quantity -
unit
-
-
Constructor Details
-
ShoppingListItem
public ShoppingListItem(int itemId, String name, String category, String allergy, int quantity, String unit) Constructor for the ShoppingListItem class. When creating a new ShoppingListItem, it is required that there is an item in the database with the same name, category and allergy.- Parameters:
name
- the name of the itemcategory
- the category of the itemallergy
- the allergy of the itemquantity
- the quantity of the itemunit
- the unit of the item
-
ShoppingListItem
public ShoppingListItem(int shoppingListItemId, int itemId, String name, String category, String allergy, int quantity, String unit) Constructor for the ShoppingListItem class. When creating a ShoppingListItem from the database, the id is known.- Parameters:
shoppingListItemId
- the id of the ShoppingListItemitemId
- the id of the itemname
- the name of the itemcategory
- the category of the itemallergy
- the allergy of the itemquantity
- the quantity of the itemunit
- the unit of the item
-
-
Method Details
-
getAttributes
Returns the attributes of the shopping list item as saved in the database.- Specified by:
getAttributes
in interfaceStorable
- Overrides:
getAttributes
in classItem
- Returns:
- the attributes of the quantity item
-
getAttributeNames
Returns the attribute names of the shopping list item.- Specified by:
getAttributeNames
in interfaceStorable
- Overrides:
getAttributeNames
in classItem
- Returns:
- the attribute names of the quantity item
-
getId
public int getId()Returns the id of the shopping list item. -
getIdName
Returns the name of the id. -
getShoppingListItemId
public int getShoppingListItemId() -
getQuantity
public int getQuantity()Getter method for the quantity of the shopping list item.- Returns:
- the quantity of the quantity item
-
getUnit
Getter method for the unit of the shopping list item.- Returns:
- the unit of the quantity item
-