items = new ArrayCollection(); } /** * @return mixed */ public function getSession() { return $this->session; } /** * @param Session $session * @return mixed */ public function setSession(Session $session) { $this->session = $session; } /** * @return mixed */ public function getCourse() { return $this->course; } /** * @param Course $course * @return mixed */ public function setCourse(Course $course) { $this->course = $course; } /** * @return ArrayCollection */ public function getItems() { return $this->items; } /** * @param CurriculumCategory $parent */ public function setParent(CurriculumCategory $parent = null) { $this->parent = $parent; } /** * @return CurriculumCategory */ public function getParent() { return $this->parent; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set cId * * @param integer $cId * @return CurriculumCategory */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * Set sessionId * * @param integer $sessionId * @return CurriculumCategory */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set title * * @param string $title * @return CurriculumCategory */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set maxScore * * @param integer $maxScore * @return CurriculumCategory */ public function setMaxScore($maxScore) { $this->maxScore = $maxScore; return $this; } /** * Get maxScore * * @return integer */ public function getMaxScore() { return $this->maxScore; } /** * Set minChars * * @param boolean $minChars * @return CurriculumCategory */ public function setMinChars($minChars) { $this->minChars = $minChars; return $this; } /** * Get minChars * * @return boolean */ public function getMinChars() { return $this->minChars; } /** * Set parentId * * @param integer $parentId * @return CurriculumCategory */ public function setParentId($parentId) { $this->parentId = $parentId; return $this; } /** * Get parentId * * @return integer */ public function getParentId() { return $this->parentId; } /** * Set lvl * * @param integer $lvl * @return CurriculumCategory */ public function setLvl($lvl) { $this->lvl = $lvl; return $this; } /** * Get lvl * * @return integer */ public function getLvl() { return $this->lvl; } /** * Set lft * * @param integer $lft * @return CurriculumCategory */ public function setLft($lft) { $this->lft = $lft; return $this; } /** * Get lft * * @return integer */ public function getLft() { return $this->lft; } /** * Set rgt * * @param integer $rgt * @return CurriculumCategory */ public function setRgt($rgt) { $this->rgt = $rgt; return $this; } /** * Get rgt * * @return integer */ public function getRgt() { return $this->rgt; } /** * Set root * * @param integer $root * @return CurriculumCategory */ public function setRoot($root) { $this->root = $root; return $this; } /** * Get root * * @return integer */ public function getRoot() { return $this->root; } }