name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set link * * @param string $link * @return CTool */ 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 CTool */ public function setImage($image) { $this->image = $image; return $this; } /** * Get image * * @return string */ public function getImage() { return $this->image; } /** * Set visibility * * @param boolean $visibility * @return CTool */ public function setVisibility($visibility) { $this->visibility = $visibility; return $this; } /** * Get visibility * * @return boolean */ public function getVisibility() { return $this->visibility; } /** * Set admin * * @param string $admin * @return CTool */ public function setAdmin($admin) { $this->admin = $admin; return $this; } /** * Get admin * * @return string */ public function getAdmin() { return $this->admin; } /** * Set address * * @param string $address * @return CTool */ public function setAddress($address) { $this->address = $address; return $this; } /** * Get address * * @return string */ public function getAddress() { return $this->address; } /** * Set addedTool * * @param boolean $addedTool * @return CTool */ public function setAddedTool($addedTool) { $this->addedTool = $addedTool; return $this; } /** * Get addedTool * * @return boolean */ public function getAddedTool() { return $this->addedTool; } /** * Set target * * @param string $target * @return CTool */ public function setTarget($target) { $this->target = $target; return $this; } /** * Get target * * @return string */ public function getTarget() { return $this->target; } /** * Set category * * @param string $category * @return CTool */ public function setCategory($category) { $this->category = $category; return $this; } /** * Get category * * @return string */ public function getCategory() { return $this->category; } /** * Set sessionId * * @param integer $sessionId * @return CTool */ public function setSessionId($sessionId) { $this->sessionId = $sessionId; return $this; } /** * Get sessionId * * @return integer */ public function getSessionId() { return $this->sessionId; } /** * Set id * * @param integer $id * @return CTool */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set cId * * @param integer $cId * @return CTool */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return integer */ public function getCId() { return $this->cId; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string $description * @return CTool */ public function setDescription($description) { $this->description = $description; return $this; } /** * @return string */ public function getCustomIcon() { return $this->customIcon; } /** * @param string $customIcon * @return CTool */ public function setCustomIcon($customIcon) { $this->customIcon = $customIcon; return $this; } }