variable = $variable; return $this; } /** * Get variable. * * @return string */ public function getVariable() { return $this->variable; } /** * Set subkey. * * @param string $subkey * * @return CCourseSetting */ public function setSubkey($subkey) { $this->subkey = $subkey; return $this; } /** * Get subkey. * * @return string */ public function getSubkey() { return $this->subkey; } /** * Set type. * * @param string $type * * @return CCourseSetting */ public function setType($type) { $this->type = $type; return $this; } /** * Get type. * * @return string */ public function getType() { return $this->type; } /** * Set category. * * @param string $category * * @return CCourseSetting */ public function setCategory($category) { $this->category = $category; return $this; } /** * Get category. * * @return string */ public function getCategory() { return $this->category; } /** * Set value. * * @param string $value * * @return CCourseSetting */ public function setValue($value) { $this->value = $value; return $this; } /** * Get value. * * @return string */ public function getValue() { return $this->value; } /** * Set title. * * @param string $title * * @return CCourseSetting */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } /** * Set comment. * * @param string $comment * * @return CCourseSetting */ public function setComment($comment) { $this->comment = $comment; return $this; } /** * Get comment. * * @return string */ public function getComment() { return $this->comment; } /** * Set subkeytext. * * @param string $subkeytext * * @return CCourseSetting */ public function setSubkeytext($subkeytext) { $this->subkeytext = $subkeytext; return $this; } /** * Get subkeytext. * * @return string */ public function getSubkeytext() { return $this->subkeytext; } /** * Set id. * * @param int $id * * @return CCourseSetting */ public function setId($id) { $this->id = $id; return $this; } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Set cId. * * @param int $cId * * @return CCourseSetting */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId. * * @return int */ public function getCId() { return $this->cId; } }