id; } /** * Set courseCode * * @param string $courseCode * @return EntitySpecificFieldValues */ public function setCourseCode($courseCode) { $this->courseCode = $courseCode; return $this; } /** * Get courseCode * * @return string */ public function getCourseCode() { return $this->courseCode; } /** * Set toolId * * @param string $toolId * @return EntitySpecificFieldValues */ public function setToolId($toolId) { $this->toolId = $toolId; return $this; } /** * Get toolId * * @return string */ public function getToolId() { return $this->toolId; } /** * Set refId * * @param integer $refId * @return EntitySpecificFieldValues */ public function setRefId($refId) { $this->refId = $refId; return $this; } /** * Get refId * * @return integer */ public function getRefId() { return $this->refId; } /** * Set fieldId * * @param integer $fieldId * @return EntitySpecificFieldValues */ public function setFieldId($fieldId) { $this->fieldId = $fieldId; return $this; } /** * Get fieldId * * @return integer */ public function getFieldId() { return $this->fieldId; } /** * Set value * * @param string $value * @return EntitySpecificFieldValues */ public function setValue($value) { $this->value = $value; return $this; } /** * Get value * * @return string */ public function getValue() { return $this->value; } }