_style = $style; } $this->_text = $text; $this->_depth = $depth; return $this; } /** * Set Anchor * * @var int $anchor */ public function setAnchor($anchor) { $this->_anchor = $anchor; } /** * Get Anchor * * @return int */ public function getAnchor() { return $this->_anchor; } /** * Set Bookmark ID * * @var int $bookmarkId */ public function setBookmarkId($bookmarkId) { $this->_bookmarkId = $bookmarkId; } /** * Get Anchor * * @return int */ public function getBookmarkId() { return $this->_bookmarkId; } /** * Get Title Text content * * @return string */ public function getText() { return $this->_text; } /** * Get Title style * * @return string */ public function getStyle() { return $this->_style; } } ?>