style = $style; } $this->text = $text; $this->depth = $depth; return $this; } /** * Set Anchor * * @param int $anchor */ public function setAnchor($anchor) { $this->anchor = $anchor; } /** * Get Anchor * * @return int */ public function getAnchor() { return $this->anchor; } /** * Set Bookmark ID * * @param 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; } }