_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name for this hyperlink. * * @param string $val The value of the name * * @return Hyperlink */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the url * The URL for this hyperlink. * * @return string|null The url */ public function getUrl() { if (array_key_exists("url", $this->_propDict)) { return $this->_propDict["url"]; } else { return null; } } /** * Sets the url * The URL for this hyperlink. * * @param string $val The value of the url * * @return Hyperlink */ public function setUrl($val) { $this->_propDict["url"] = $val; return $this; } }