Class Event

java.lang.Object
no.ntnu.idatt1002.demo.data.Event
All Implemented Interfaces:
Storable

public class Event extends Object implements Storable
This class represents an event with a recipe id and a date.
  • Field Details

    • eventId

      private int eventId
    • recipeId

      private final int recipeId
    • name

      private String name
    • date

      private final int date
    • category

      private String 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 recipe
      date - 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 event
      recipeId - the id of the recipe
      date - the date of the event
    • Event

      public Event(int eventId, int recipeId, String name, int date, String category, int cookingTime)
      Constructor for the Event class.
      Parameters:
      eventId - the id of the event
      recipeId - the id of the recipe
      name - the name of the event
      date - the date of the event
      category - the category of the event
      cookingTime - the cooking time of the event
  • Method Details

    • getAttributes

      public List<String> getAttributes()
      Returns the attributes of the event.
      Specified by:
      getAttributes in interface Storable
      Returns:
      the attributes of the event
    • getAttributeNames

      public List<String> getAttributeNames()
      Returns the attribute names of the event.
      Specified by:
      getAttributeNames in interface Storable
      Returns:
      the attribute names of the event
    • getId

      public int getId()
      Returns the id of the event.
      Specified by:
      getId in interface Storable
      Returns:
      the id of the event
    • getIdName

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

      public String getName()
      Getter method for the name of the event.
      Returns:
      the name of the event
    • toString

      public String toString()
      Overrides:
      toString in class Object