name = $name; return $this; } /** * Get name. * * @return string */ public function getName() { return $this->name; } /** * Set link. * * @param string $link * * @return CourseModule */ public function setLink($link) { $this->link = $link; return $this; } /** * Get link. * * @return string */ public function getLink() { return $this->link; } /** * Set image. * * @param string $image * * @return CourseModule */ public function setImage($image) { $this->image = $image; return $this; } /** * Get image. * * @return string */ public function getImage() { return $this->image; } /** * Set row. * * @param int $row * * @return CourseModule */ public function setRow($row) { $this->row = $row; return $this; } /** * Get row. * * @return int */ public function getRow() { return $this->row; } /** * Set column. * * @param int $column * * @return CourseModule */ public function setColumn($column) { $this->column = $column; return $this; } /** * Get column. * * @return int */ public function getColumn() { return $this->column; } /** * Set position. * * @param string $position * * @return CourseModule */ public function setPosition($position) { $this->position = $position; return $this; } /** * Get position. * * @return string */ public function getPosition() { return $this->position; } /** * Get id. * * @return int */ public function getId() { return $this->id; } }