getAxes()->getTimeAxis(); } public function getTimeAxis() { if ($this->getAxes() == NULL) return NULL; return $this->getAxes()->getTimeAxis(); } public function setPosition($position) { $this->setAttribute(REQUESTOUTPUTPLOTELEMENTSTATUS_POSITION, $position); } public function getPosition() { return $this->getAttribute(REQUESTOUTPUTPLOTELEMENTSTATUS_POSITION); } public function setColorMap($colorMapIndex) { $this->setAttribute(REQUESTOUTPUTPLOTELEMENTSTATUS_COLORMAP, $colorMapIndex); } public function getColorMap() { return $this->getAttribute(REQUESTOUTPUTPLOTELEMENTSTATUS_COLORMAP); } public function loadFromNode($xmlNode) { $this->setPosition($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTELEMENTSTATUS_POSITION)); $this->setColorMap($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTELEMENTSTATUS_COLORMAP)); parent::loadFromNode($xmlNode); } } ?>