Package no.ntnu.idatt1002.demo.data
Class Event
java.lang.Object
no.ntnu.idatt1002.demo.data.Event
- All Implemented Interfaces:
Storable
This class represents an event with a recipe id and a date.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the attribute names of the event.Returns the attributes of the event.int
getDate()
Getter method for the date of the event.int
Getter method for the event id.int
getId()
Returns the id of the event.Returns the name of the id.getName()
Getter method for the name of the event.int
Getter method for the recipe id of the event.toString()
-
Field Details
-
eventId
private int eventId -
recipeId
private final int recipeId -
name
-
date
private final int date -
category
-
cookingTime
private int cookingTime
-
-
Constructor Details
-
Event
public Event(int recipeId, int date) Constructor for the Event class.- Parameters:
recipeId
- the id of the recipedate
- the date of the event
-
Event
public Event(int eventId, int recipeId, int date) Constructor for the Event class.- Parameters:
eventId
- the id of the eventrecipeId
- the id of the recipedate
- the date of the event
-
Event
Constructor for the Event class.- Parameters:
eventId
- the id of the eventrecipeId
- the id of the recipename
- the name of the eventdate
- the date of the eventcategory
- the category of the eventcookingTime
- the cooking time of the event
-
-
Method Details
-
getAttributes
Returns the attributes of the event.- Specified by:
getAttributes
in interfaceStorable
- Returns:
- the attributes of the event
-
getAttributeNames
Returns the attribute names of the event.- Specified by:
getAttributeNames
in interfaceStorable
- Returns:
- the attribute names of the event
-
getId
public int getId()Returns the id of the event. -
getIdName
Returns the name of the id. -
getEventId
public int getEventId()Getter method for the event id.- Returns:
- the event id
-
getRecipeId
public int getRecipeId()Getter method for the recipe id of the event.- Returns:
- the recipe id of the event
-
getDate
public int getDate()Getter method for the date of the event.- Returns:
- the date of the event
-
getName
Getter method for the name of the event.- Returns:
- the name of the event
-
toString
-