Class: dataObject

Attributes:
Inherits:
Implements:

Contents:

Introduction

Meta Data

Attention
Attention: There is no meta data for this class.

Constants

There are no constants defined for this class.

Properties

Methods

Also See

Attention
Attention: There are no additional references for this class.

Class Syntax

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);
        }
    }

?>