selected_presentations = new ArrayCollection(); } /** * @return string */ public function getName() { return $this->name; } /** * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getListType() { return $this->list_type; } /** * @param string $list_type */ public function setListType($list_type) { $this->list_type = $list_type; } /** * @return string */ public function getListClass() { return $this->list_class; } /** * @param string $list_class */ public function setListClass($list_class) { $this->list_class = $list_class; } /** * @return string */ public function getHash() { return $this->hash; } /** * @param string $hash */ public function setHash($hash) { $this->hash = $hash; } /** * @return PresentationCategory */ public function getCategory() { return $this->category; } /** * @param PresentationCategory $category */ public function setCategory($category) { $this->category = $category; } /** * @return Member */ public function getMember() { return $this->member; } /** * @param Member $member */ public function setMember($member) { $this->member = $member; } /** * @return SummitSelectedPresentation[] */ public function getSelectedPresentations() { return $this->selected_presentations; } /** * @param SummitSelectedPresentation[] $selected_presentations */ public function setSelectedPresentations($selected_presentations) { $this->selected_presentations = $selected_presentations; } }