RequestOutputPlotEpochAxisNodeClass.php 790 Bytes
<?php

require_once("RequestOutputPlotAxisElementNodeClass.php");

define ("REQUESTOUTPUTPLOTEPOCHAXIS_NAME", "epochAxis");
define ("REQUESTOUTPUTPLOTEPOCHAXIS_NORMALIZED", "normalized");

/**
 * @class RequestOutputPlotEpochAxisNodeClass
 * @brief Definition of an epoch axis element for a plot element of a plot request
 * @details
*/
class RequestOutputPlotEpochAxisNodeClass extends RequestOutputPlotAxisElementNodeClass
{
	public function __construct()
	{
		parent::__construct(REQUESTOUTPUTPLOTEPOCHAXIS_NAME);
	}

	public function setNormalized($normalized)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTEPOCHAXIS_NORMALIZED, $normalized);
	}

	public function getNormalized()
	{
		return $this->getAttribute(REQUESTOUTPUTPLOTEPOCHAXIS_NORMALIZED);
	}
}

?>