Package no.ntnu.idatt1002.demo.data
Class RecipeIngredient
java.lang.Object
no.ntnu.idatt1002.demo.data.Item
no.ntnu.idatt1002.demo.data.ShoppingListItem
no.ntnu.idatt1002.demo.data.RecipeIngredient
- All Implemented Interfaces:
Storable
This class represents a recipe ingredient connected to a recipe.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionRecipeIngredient
(int recipeIngredientId, int itemId, String name, String category, String allergy, int quantity, String unit, int recipeId) Constructor for the RecipeIngredient class with recipe ingredient id.RecipeIngredient
(int itemId, String name, String category, String allergy, int quantity, String unit, int recipeId) Constructor for the RecipeIngredient class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the attribute names of the recipe ingredient.Returns the attributes of the recipe ingredient.int
getId()
Returns the id of the recipe ingredient.Returns the id name of the recipe ingredient.int
Returns the recipe id of the recipe ingredient.int
Returns the recipe ingredient id.Methods inherited from class no.ntnu.idatt1002.demo.data.ShoppingListItem
getQuantity, getShoppingListItemId, getUnit
Methods inherited from class no.ntnu.idatt1002.demo.data.Item
getAllergy, getCategory, getItemId, getName, toString
-
Field Details
-
recipeIngredientId
private int recipeIngredientId -
recipeId
private final int recipeId
-
-
Constructor Details
-
RecipeIngredient
public RecipeIngredient(int itemId, String name, String category, String allergy, int quantity, String unit, int recipeId) Constructor for the RecipeIngredient class.- Parameters:
itemId
- the id of the itemname
- the name of the itemcategory
- the category of the itemallergy
- the allergy information of the itemquantity
- the quantity of the itemunit
- the unit of the itemrecipeId
- the id of the recipe
-
RecipeIngredient
public RecipeIngredient(int recipeIngredientId, int itemId, String name, String category, String allergy, int quantity, String unit, int recipeId) Constructor for the RecipeIngredient class with recipe ingredient id.- Parameters:
recipeIngredientId
- the id of the recipe ingredientitemId
- the id of the itemname
- the name of the itemcategory
- the category of the itemallergy
- the allergy information of the itemquantity
- the quantity of the itemunit
- the unit of the itemrecipeId
- the id of the recipe
-
-
Method Details
-
getAttributes
Returns the attributes of the recipe ingredient.- Specified by:
getAttributes
in interfaceStorable
- Overrides:
getAttributes
in classShoppingListItem
- Returns:
- the attributes of the recipe ingredient
-
getAttributeNames
Returns the attribute names of the recipe ingredient.- Specified by:
getAttributeNames
in interfaceStorable
- Overrides:
getAttributeNames
in classShoppingListItem
- Returns:
- the attribute names of the recipe ingredient
-
getId
public int getId()Returns the id of the recipe ingredient.- Specified by:
getId
in interfaceStorable
- Overrides:
getId
in classShoppingListItem
- Returns:
- the id of the recipe ingredient
-
getIdName
Returns the id name of the recipe ingredient.- Specified by:
getIdName
in interfaceStorable
- Overrides:
getIdName
in classShoppingListItem
- Returns:
- the id name of the recipe ingredient
-
getRecipeId
public int getRecipeId()Returns the recipe id of the recipe ingredient.- Returns:
- the recipe id of the recipe ingredient
-
getRecipeIngredientId
public int getRecipeIngredientId()Returns the recipe ingredient id.- Returns:
- the recipe ingredient id
-