Class EventDetail

java.lang.Object
com.example.skeddly.business.event.EventDetail

public class EventDetail extends Object
This class represents specific details about an event.
  • Constructor Details

    • EventDetail

      public EventDetail()
      No arg Constructor for EventDetails. Required by Firestore.
    • EventDetail

      public EventDetail(String name, String description, String entryCriteria, ArrayList<String> categories)
      Constructor for the EventDetail
      Parameters:
      name - The name of the event
      description - The description of the event
      categories - The categories of the event
    • EventDetail

      public EventDetail(String name, String description, String entryCriteria)
      Constructor for the EventDetail
      Parameters:
      name - The name of the event
      description - The description of the event
  • Method Details

    • getName

      public String getName()
      Gets the name of the event
      Returns:
      The name of the event
    • setName

      public void setName(String name)
      Sets the name of the event
      Parameters:
      name - The name of the event
    • getDescription

      public String getDescription()
      Gets the description of the event
      Returns:
      The description of the event
    • setDescription

      public void setDescription(String description)
      Sets the description of the event
      Parameters:
      description - The description of the event
    • getEntryCriteria

      public String getEntryCriteria()
      Gets the entry criteria for the event.
      Returns:
      A string containing the entry criteria.
    • setEntryCriteria

      public void setEntryCriteria(String entryCriteria)
      Sets the entry criteria for the event.
      Parameters:
      entryCriteria - A string containing the entry criteria.
    • getCategories

      public ArrayList<String> getCategories()
      Gets the categories of the event
      Returns:
      The categories of the event
    • setCategories

      public void setCategories(ArrayList<String> categories)
      Sets the categories of the event
      Parameters:
      categories - The categories of the event