RequestOutputPlotYSerieNodeClass.php 2.81 KB
<?php

define ("REQUESTOUTPUTPLOTYSERIE_XYPLOT_NAME", "yserie");
define ("REQUESTOUTPUTPLOTYSERIE_TIMEPLOT_NAME", "serie");

define ("REQUESTOUTPUTPLOTYSERIE_YAXIS", "yAxis");
define ("REQUESTOUTPUTPLOTYSERIE_XAXIS", "xAxis");
define ("REQUESTOUTPUTPLOTYSERIE_INDEX", "index");
define ("REQUESTOUTPUTPLOTYSERIE_COLORSERIEID", "colorSerieId");
define ("REQUESTOUTPUTPLOTYSERIE_RESAMPLING", "resampling");
define ("REQUESTOUTPUTPLOTYSERIE_LINE", "line");
define ("REQUESTOUTPUTPLOTYSERIE_SYMBOL", "symbol");
define ("REQUESTOUTPUTPLOTYSERIE_TIMETICKS", "timeTick");

/**
 * @class RequestOutputPlotYSerieNodeClass
 * @brief Definition of a yserie for a plot of a plot request
 * @details
*/
class RequestOutputPlotYSerieNodeClass extends NodeClass
{
	public function __construct($name)
	{
		parent::__construct($name);
	}

	public function setYAxisId($axisId)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTYSERIE_YAXIS, $axisId);
	}

	public function getYAxisId()
	{
		return $this->getAttribute(REQUESTOUTPUTPLOTYSERIE_YAXIS);
	}

	public function setXAxisId($axisId)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTYSERIE_XAXIS, $axisId);
	}

	public function getXAxisId()
	{
		return $this->getAttribute(REQUESTOUTPUTPLOTYSERIE_XAXIS);
	}

	public function setIndex($index)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTYSERIE_INDEX, $index);
	}

	public function getIndex()
	{
		return $this->getAttribute(REQUESTOUTPUTPLOTYSERIE_INDEX);
	}
	
	public function setColorSerieId($colorSerieId)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTYSERIE_COLORSERIEID, $colorSerieId);
	}
	
	public function getColorSerieId()
	{
		return $this->getAttribute(REQUESTOUTPUTPLOTYSERIE_COLORSERIEID);
	}
	
	public function getResampling()
	{
		$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTYSERIE_RESAMPLING);
		
		if (!isset($node))
		{
			$node = new RequestOutputPlotResamplingNodeClass(REQUESTOUTPUTPLOTYSERIE_RESAMPLING);
			$this->addChild($node);
		}
		
		return $node;
	}
	
	public function getLine()
	{
		$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTYSERIE_LINE);
	
		if (!isset($node))
		{
			$node = new RequestOutputPlotLineNodeClass(REQUESTOUTPUTPLOTYSERIE_LINE);
			$this->addChild($node);
		}
	
		return $node;
	}
	
	public function getSymbol()
	{
		$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTYSERIE_SYMBOL);
		
		if (!isset($node))
		{
			$node = new RequestOutputPlotSymbolNodeClass(REQUESTOUTPUTPLOTYSERIE_SYMBOL);
			$this->addChild($node);
		}
		
		return $node;
	}
	
	public function getTimeTicks()
	{
		$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTYSERIE_TIMETICKS);
	
		if (!isset($node))
		{
			$node = new RequestOutputPlotYSerieTimeTicksNodeClass(REQUESTOUTPUTPLOTYSERIE_TIMETICKS);
			$this->addChild($node);
		}
	
		return $node;
	}
}

?>