InfoParamTableDefNodeClass.php
1.2 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
<?php
define ("INFOPARAMTABLEDEF_NAME", "name");
define ("INFOPARAMTABLEDEF_DIM", "dim");
define ("INFOPARAMTABLEDEF_UNITS", "units");
/**
* @class InfoParamTableDefNodeClass
* @brief Definition of a table - Generic properties
* @details
*/
class InfoParamTableDefNodeClass extends NodeClass
{
public function __construct($name)
{
parent::__construct($name);
}
public function setTableName($name)
{
$this->setAttribute(INFOPARAMTABLEDEF_NAME,$name);
}
public function getTableName()
{
return $this->getAttribute(INFOPARAMTABLEDEF_NAME);
}
public function setDim($dim)
{
$this->setAttribute(INFOPARAMTABLEDEF_DIM,$dim);
}
public function getDim()
{
return $this->getAttribute(INFOPARAMTABLEDEF_DIM);
}
public function setUnits($units)
{
$this->setAttribute(INFOPARAMTABLEDEF_UNITS,$units);
}
public function getUnits()
{
return $this->getAttribute(INFOPARAMTABLEDEF_UNITS);
}
public function loadFromNode($xmlNode)
{
$this->setTableName($this->getXmlNodeAttribute($xmlNode, INFOPARAMTABLEDEF_NAME));
$this->setDim($this->getXmlNodeAttribute($xmlNode, INFOPARAMTABLEDEF_DIM));
$this->setUnits($this->getXmlNodeAttribute($xmlNode, INFOPARAMTABLEDEF_UNITS));
}
}
?>