/**
  * Adds a feature to the Event attribute of the ProjectEventList object
  *
  * @param thisTicket The feature to be added to the Event attribute
  */
 public void addEvent(Ticket thisTicket) {
   if (thisTicket != null) {
     openProjectTickets.add(thisTicket);
   }
 }