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

public class ShoppingListItem extends Item
This class is a simple bean for a Shopping list item. This is an item with a quantity and a unit.
  • Field Details

    • shoppingListItemId

      private int shoppingListItemId
    • quantity

      private final int quantity
    • unit

      private final String 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 item
      category - the category of the item
      allergy - the allergy of the item
      quantity - the quantity of the item
      unit - 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 ShoppingListItem
      itemId - the id of the item
      name - the name of the item
      category - the category of the item
      allergy - the allergy of the item
      quantity - the quantity of the item
      unit - the unit of the item
  • Method Details

    • getAttributes

      public List<String> getAttributes()
      Returns the attributes of the shopping list item as saved in the database.
      Specified by:
      getAttributes in interface Storable
      Overrides:
      getAttributes in class Item
      Returns:
      the attributes of the quantity item
    • getAttributeNames

      public List<String> getAttributeNames()
      Returns the attribute names of the shopping list item.
      Specified by:
      getAttributeNames in interface Storable
      Overrides:
      getAttributeNames in class Item
      Returns:
      the attribute names of the quantity item
    • getId

      public int getId()
      Returns the id of the shopping list item.
      Specified by:
      getId in interface Storable
      Overrides:
      getId in class Item
      Returns:
      the id of the shopping list item
    • getIdName

      public String getIdName()
      Returns the name of the id.
      Specified by:
      getIdName in interface Storable
      Overrides:
      getIdName in class Item
      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

      public String getUnit()
      Getter method for the unit of the shopping list item.
      Returns:
      the unit of the quantity item