setValue($text); } public function getText() { return $this->getValue(); } public function setPosition($position) { $this->setAttribute(REQUESTOUTPUTPLOTTITLE_POSITION, $position); } public function getPosition() { return $this->getAttribute(REQUESTOUTPUTPLOTTITLE_POSITION); } public function setAlign($align) { $this->setAttribute(REQUESTOUTPUTPLOTTITLE_ALIGN, $align); } public function getAlign() { return $this->getAttribute(REQUESTOUTPUTPLOTTITLE_ALIGN); } public function loadFromNode($xmlNode) { $this->setText($this->getXmlNodeValue($xmlNode)); $this->setPosition($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTTITLE_POSITION)); $this->setAlign($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTTITLE_ALIGN)); parent::loadFromNode($xmlNode); } } ?>