RequestOutputPlotBaseSerieNodeClass.php
5.46 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
require_once "RequestOutputPlotLineNodeClass.php";
require_once "RequestOutputPlotSymbolNodeClass.php";
require_once "RequestOutputPlotSerieTimeTicksNodeClass.php";
require_once "RequestOutputPlotSerieIntervalTicksNodeClass.php";
define ("REQUESTOUTPUTPLOTBASESERIE_YAXIS", "yAxis");
define ("REQUESTOUTPUTPLOTBASESERIE_XAXIS", "xAxis");
define ("REQUESTOUTPUTPLOTBASESERIE_COLORSERIEID", "colorSerieId");
define ("REQUESTOUTPUTPLOTBASESERIE_MIN", "min");
define ("REQUESTOUTPUTPLOTBASESERIE_MAX", "max");
define ("REQUESTOUTPUTPLOTBASESERIE_LINE", "line");
define ("REQUESTOUTPUTPLOTBASESERIE_SYMBOL", "symbol");
define ("REQUESTOUTPUTPLOTBASESERIE_TIMETICKS", "timeTick");
define ("REQUESTOUTPUTPLOTBASESERIE_INTERVALTICKS", "intervalTick");
define ("REQUESTOUTPUTPLOTBASESERIE_ID", "id");
/**
* @class RequestOutputPlotBaseSerieNodeClass
* @brief Definition of a base serie for a plot of a plot request
* @details
*/
class RequestOutputPlotBaseSerieNodeClass extends NodeClass
{
public function __construct($name)
{
parent::__construct($name);
}
public function setYAxisId($axisId)
{
$this->setAttribute(REQUESTOUTPUTPLOTBASESERIE_YAXIS, $axisId);
}
public function getYAxisId()
{
return $this->getAttribute(REQUESTOUTPUTPLOTBASESERIE_YAXIS);
}
public function setXAxisId($axisId)
{
$this->setAttribute(REQUESTOUTPUTPLOTBASESERIE_XAXIS, $axisId);
}
public function getXAxisId()
{
return $this->getAttribute(REQUESTOUTPUTPLOTBASESERIE_XAXIS);
}
public function setColorSerieId($colorSerieId)
{
$this->setAttribute(REQUESTOUTPUTPLOTBASESERIE_COLORSERIEID, $colorSerieId);
}
public function getColorSerieId()
{
return $this->getAttribute(REQUESTOUTPUTPLOTBASESERIE_COLORSERIEID);
}
public function setMin($min)
{
$this->setAttribute(REQUESTOUTPUTPLOTBASESERIE_MIN, $min);
}
public function getMin()
{
return $this->getAttribute(REQUESTOUTPUTPLOTBASESERIE_MIN);
}
public function setMax($max)
{
$this->setAttribute(REQUESTOUTPUTPLOTBASESERIE_MAX, $max);
}
public function getMax()
{
return $this->getAttribute(REQUESTOUTPUTPLOTBASESERIE_MAX);
}
public function isLineDefined()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_LINE);
return isset($node);
}
public function getLine()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_LINE);
if (!isset($node))
{
$node = new RequestOutputPlotLineNodeClass(REQUESTOUTPUTPLOTBASESERIE_LINE);
$this->addChild($node);
}
return $node;
}
public function isSymbolDefined()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_SYMBOL);
return isset($node);
}
public function getSymbol()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_SYMBOL);
if (!isset($node))
{
$node = new RequestOutputPlotSymbolNodeClass(REQUESTOUTPUTPLOTBASESERIE_SYMBOL);
$this->addChild($node);
}
return $node;
}
public function isTimeTicksDefined()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_TIMETICKS);
return isset($node);
}
public function getTimeTicks()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_TIMETICKS);
if (!isset($node))
{
$node = new RequestOutputPlotSerieTimeTicksNodeClass(REQUESTOUTPUTPLOTBASESERIE_TIMETICKS);
$this->addChild($node);
}
return $node;
}
public function isIntervalTicksDefined()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_INTERVALTICKS);
return isset($node);
}
public function getIntervalTicks()
{
$node = $this->getFirstChildByName(REQUESTOUTPUTPLOTBASESERIE_INTERVALTICKS);
if (!isset($node))
{
$node = new RequestOutputPlotSerieIntervalTicksNodeClass(REQUESTOUTPUTPLOTBASESERIE_INTERVALTICKS);
$this->addChild($node);
}
return $node;
}
public function setId($id)
{
$this->setAttribute(REQUESTOUTPUTPLOTBASESERIE_ID, $id);
}
public function getId()
{
return $this->getAttribute(REQUESTOUTPUTPLOTBASESERIE_ID);
}
public function loadFromNode($xmlNode)
{
$this->setYAxisId($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTBASESERIE_YAXIS));
$this->setXAxisId($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTBASESERIE_XAXIS));
$this->setColorSerieId($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTBASESERIE_COLORSERIEID));
$this->setMin($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTBASESERIE_MIN));
$this->setMax($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTBASESERIE_MAX));
$lineXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTBASESERIE_LINE);
if (isset($lineXmlNode))
$this->getLine()->loadFromNode($lineXmlNode);
$symbolXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTBASESERIE_SYMBOL);
if (isset($symbolXmlNode)) {
$this->getSymbol()->loadFromNode($symbolXmlNode);
}
$timeTicksXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTBASESERIE_TIMETICKS);
if (isset($timeTicksXmlNode))
$this->getTimeTicks()->loadFromNode($timeTicksXmlNode);
$intervalTicksXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTPLOTBASESERIE_INTERVALTICKS);
if (isset($intervalTicksXmlNode))
$this->getIntervalTicks()->loadFromNode($intervalTicksXmlNode);
$this->setId($this->getXmlNodeAttribute($xmlNode, REQUESTOUTPUTPLOTBASESERIE_ID));
}
}
?>