Class: dataString

Attributes:
Inherits:
Implements:

Contents:

Introduction

Attention
Attention: No description has been provided for this class.

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\dataPrimitive.datatype.php between lines 156 and 168.

<?php
 
    
class dataString extends dataPrimitive
    
{
        
        public function 
___setValue ($strNodeValue)
        {
            if (
$strNodeValue !== NULL)
            {
                
$strNodeValue = (string) $strNodeValue;
            }
            
            return 
parent::___setValue ($strNodeValue);
        }
    }

?>