id; } /** * Set startdate * * @param \DateTime $startdate * @return Event */ 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 Event */ public function setEnddate($enddate) { $this->enddate = $enddate; return $this; } /** * Get enddate * * @return \DateTime */ public function getEnddate() { return $this->enddate; } /** * Set summary * * @param string $summary * @return Event */ public function setSummary($summary) { $this->summary = $summary; return $this; } /** * Get summary * * @return string */ public function getSummary() { return $this->summary; } /** * Set description * * @param string $description * @return Event */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set location * * @param string $locations_id * @return Event */ public function setLocationsID($locations_id) { $this->locations_id = $locations_id; return $this; } /** * Get location * * @return string */ public function getLocationsID() { return $this->locations_id; } /** * Set url * * @param string $url * @return Event */ public function setUrl($url) { $this->url = $url; return $this; } /** * Get url * * @return string */ public function getUrl() { return $this->url; } /** * @param \Hackspace\Bundle\CalciferBundle\Entity\Location $location * @return $this */ public function setLocation($location) { $this->location = $location; return $this; } /** * @return \Hackspace\Bundle\CalciferBundle\Entity\Location */ public function getLocation() { return $this->location; } public function getTags() { return $this->tags; } public function isValid() { return false; } }