* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ class ListDataElement extends ListComposite { private $defaultValue; private $checkRegex; private $checkDesc; private $docDescShort; private $docDescLong; function output($level = 0) { $pad = str_repeat(" ", $level * 4); echo "$pad - ".$this->name." = '".$this->value."'\n"; foreach ($this->children as $child) { $child->output($level +1); } } function getLogDesc() { } function getShortDesc() { } function getFormType() { } } ?>