InfoParamTableDefNodeClass.php 1.2 KB
<?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));
	}
}

?>