Source for file ValuesLists.php
Documentation is available at ValuesLists.php
* Description: ValueLists is a collection of ValueList objects.
* @copyright (c) 1995-2010 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
return parent::offsetGet($index);
for ( $t = 0; $t < sizeof($this); $t++ ) {
|