* * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, version 2.1. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * * $Id: CharacterData.php,v 1.2 2006-10-30 18:24:59 baron Exp $ */ include_once("Node.php"); class CharacterData extends Node { var $data; var $length; function CharacterData() { $this->Node(); $this->nodeType = DOM_CDATA_SECTION_NODE; } function setData($data) { $this->data = $data; $this->length = strlen($data); } function substringData($offset, $count) { } function appendData($arg) { } function insertData($offset, $arg) { } function deleteData($offset, $count) { } function replaceData($offset, $count, $arg) { } } ?>