In file D:\oblib-core\php\oblib\dataType\dataObject.datatype.php between lines 45 and 76.
<?php
/**
*
*/
class dataObject extends dataList
{
public function ___Index ($objIndex)
{
return $objIndex->___Name ();
}
public function __get ($strNodeName)
{
$objNode =@ $this->___Pull ($strNodeName);
if (!$objNode)
{
return NULL;
}
return $objNode;
}
public function __set ($strNodeName, $strNodeValue)
{
$objNode =@ $this->___Pull ($strNodeName);
if (!$objNode)
{
return NULL;
}
return $objNode->___setValue ($strNodeValue);
}
}
?>