RequestOutputPlotElementNodeClass.php
3.04 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
require_once("RequestOutputPlotLegendsNodeClass.php");
require_once("RequestOutputPlotParamsNodeClass.php");
require_once("RequestOutputPlotAxesNodeClass.php");
require_once("RequestOutputPlotAdditionalObjectsNodeClass.php");
require_once("RequestOutputPlotFillsNodeClass.php");
define ("REQUESTOUTPUTPLOTLEGENDS_NAME", "legends");
/**
* @class RequestOutputPlotElementNodeClass
* @brief Definition of a plot element for a panel of a plot request
* @details
*/
class RequestOutputPlotElementNodeClass extends NodeClass
{
public function __construct($plotElementName, $defineLegends, $defineAdditionalObjects, $defineFills, $noXAxis, $noYAxis, $noZAxis)
{
parent::__construct($plotElementName);
//create plot element skeleton
if ($defineLegends)
{
$node = new RequestOutputPlotLegendsNodeClass(REQUESTOUTPUTPLOTLEGENDS_NAME);
$this->addChild($node);
}
//params
$node = new RequestOutputPlotParamsNodeClass();
$this->addChild($node);
//axes
if (!$noXAxis || !$noYAxis || !$noZAxis)
{
$node = new RequestOutputPlotAxesNodeClass($noXAxis, $noYAxis, $noZAxis);
$this->addChild($node);
}
//additional objects
if ($defineAdditionalObjects)
{
$node = new RequestOutputPlotAdditionalObjectsNodeClass();
$this->addChild($node);
}
//fills
if ($defineFills)
{
$node = new RequestOutputPlotFillsNodeClass();
$this->addChild($node);
}
}
public function getLegends()
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTLEGENDS_NAME);
return $node;
}
public function getParams()
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTPARAMS_NAME);
return $node;
}
public function getAxes()
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTAXES_NAME);
return $node;
}
public function getAdditionalObjects()
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTADDITIONALOBJECTS_NAME);
return $node;
}
public function getFills()
{
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTFILLS_NAME);
return $node;
}
public function loadFromNode($xmlNode)
{
$legendXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTLEGENDS_NAME);
if (isset($legendXmlNode))
$this->getLegends()->loadFromNode($legendXmlNode);
$paramsXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTPARAMS_NAME);
if (isset($paramsXmlNode))
$this->getParams()->loadFromNode($paramsXmlNode);
$axesXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTAXES_NAME);
if (isset($axesXmlNode))
$this->getAxes()->loadFromNode($axesXmlNode);
$additionalObjXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTADDITIONALOBJECTS_NAME);
if (isset($additionalObjXmlNode))
$this->getAdditionalObjects()->loadFromNode($additionalObjXmlNode);
$fillsXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTFILLS_NAME);
if (isset($fillsXmlNode))
$this->getFills()->loadFromNode($fillsXmlNode);
}
}
?>