RequestOutputPlotFillSerieSerieNodeClass.php 1.29 KB
<?php

define ("REQUESTOUTPUTPLOTFILLSERIESERIE_NAME", "fillSerieSerie");
define ("REQUESTOUTPUTPLOTFILLSERIESERIE_FIRSTSERIEID", "firstSerieId");
define ("REQUESTOUTPUTPLOTFILLSERIESERIE_SECONDSERIEID", "secondSerieId");

/**
 * @class RequestOutputPlotFillSerieSerieNodeClass
 * @brief Definition of fill serie/serie for a plot
 * @details
 */
class RequestOutputPlotFillSerieSerieNodeClass extends RequestOutputPlotFillNodeClass
{
	public function __construct()
	{
		parent::__construct(REQUESTOUTPUTPLOTFILLSERIESERIE_NAME);
	}
	
	public function setFirstSerieId($id)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTFILLSERIESERIE_FIRSTSERIEID, $id);
	}
	
	public function getFirstSerieId()
	{
		return $this->getAttribute(REQUESTOUTPUTPLOTFILLSERIESERIE_FIRSTSERIEID);
	}
	
	public function setSecondSerieId($id)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTFILLSERIESERIE_SECONDSERIEID, $id);
	}
	
	public function getSecondSerieId()
	{
		return $this->getAttribute(REQUESTOUTPUTPLOTFILLSERIESERIE_SECONDSERIEID);
	}
	
	public function loadFromNode($xmlNode)
	{
		$this->setFirstSerieId($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTFILLSERIESERIE_FIRSTSERIEID));
		$this->setSecondSerieId($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTFILLSERIESERIE_SECONDSERIEID));
		parent::loadFromNode($xmlNode);
	}
}

?>