RequestOutputPlotLineNodeClass.php
764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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);
}
public function loadFromNode($xmlNode)
{
$this->setType($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTLINE_TYPE));
parent::loadFromNode($xmlNode);
}
}
?>