RequestOutputPlotLineNodeClass.php 598 Bytes
<?php

define ("REQUESTOUTPUTPLOTLINE_TYPE", "type");

abstract class RequestOutputPlotLineTypeEnum
{
	const NO   = "no";
	const LINE = "line";
}

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

?>