cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set id * * @param integer $id * @return EntityCCalendarEvent */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set title * * @param string $title * @return EntityCCalendarEvent */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set content * * @param string $content * @return EntityCCalendarEvent */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content * * @return string */ public function getContent() { return $this->content; } /** * Set startDate * * @param \DateTime $startDate * @return EntityCCalendarEvent */ public function setStartDate($startDate) { $this->startDate = $startDate; return $this; } /** * Get startDate * * @return \DateTime */ public function getStartDate() { return $this->startDate; } /** * Set endDate * * @param \DateTime $endDate * @return EntityCCalendarEvent */ public function setEndDate($endDate) { $this->endDate = $endDate; return $this; } /** * Get endDate * * @return \DateTime */ public function getEndDate() { return $this->endDate; } /** * Set parentEventId * * @param integer $parentEventId * @return EntityCCalendarEvent */ public function setParentEventId($parentEventId) { $this->parentEventId = $parentEventId; return $this; } /** * Get parentEventId * * @return integer */ public function getParentEventId() { return $this->parentEventId; } /** * Set sessionId * * @param integer $sessionId * @return EntityCCalendarEvent */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set allDay * * @param integer $allDay * @return EntityCCalendarEvent */ public function setAllDay($allDay) { $this->allDay = $allDay; return $this; } /** * Get allDay * * @return integer */ public function getAllDay() { return $this->allDay; } }