Class: dataNumber

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 170 and 182.

<?php
 
    
class dataNumber extends dataPrimitive
    
{
        
        public function 
___setValue ($fltNodeValue)
        {
            if (
$fltNodeValue !== NULL)
            {
                
$fltNodeValue = (float) $fltNodeValue;
            }
            
            return 
parent::___setValue ($fltNodeValue);
        }
    }

?>