setAttribute(REQUESTOUTPUTPLOTCURVE_STYLE, $style); } public function getStyle() { return $this->getAttribute(REQUESTOUTPUTPLOTCURVE_STYLE); } public function setWidth($width) { $this->setAttribute(REQUESTOUTPUTPLOTCURVE_WIDTH, $width); } public function getWidth() { return $this->getAttribute(REQUESTOUTPUTPLOTCURVE_WIDTH); } public function setColor($color) { $this->setAttribute(REQUESTOUTPUTPLOTCURVE_COLOR, $color); } public function getColor() { return $this->getAttribute(REQUESTOUTPUTPLOTCURVE_COLOR); } public function loadFromNode($xmlNode) { $this->setStyle($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTCURVE_STYLE)); $this->setWidth($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTCURVE_WIDTH)); $this->setColor($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTCURVE_COLOR)); } } ?>