RequestOutputPlotResamplingNodeClass.php 923 Bytes
<?php

define ("REQUESTOUTPUTPLOTRESAMPLING_TYPE", "type");
define ("REQUESTOUTPUTPLOTRESAMPLING_VALUE", "value");

abstract class RequestOutputPlotResamplingTypeEnum
{
	const AUTO   = "auto";
	const XPARAM = "xparam";
	const YPARAM = "yparam";
	const MANUAL = "manual";
}

/**
 * @class RequestOutputPlotLineNodeClass
 * @brief Definition of a line element for a plot
 * @details
 */
class RequestOutputPlotResamplingNodeClass extends NodeClass
{
	public function __construct($name)
	{
		parent::__construct($name);
	}
	
	public function setType($type)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTRESAMPLING_TYPE, $type);
	}
	
	public function getType()
	{
		$this->getAttribute(REQUESTOUTPUTPLOTRESAMPLING_TYPE);
	}
	
	public function setValue($value)
	{
		$this->setAttribute(REQUESTOUTPUTPLOTRESAMPLING_VALUE, $value);
	}
	
	public function getValue()
	{
		$this->getAttribute(REQUESTOUTPUTPLOTRESAMPLING_VALUE);
	}
}

?>