<?php
/**
* Class : BowStringNode
* Developed by Jonas Eriksson
* @copyright 2003 BICOM KB
**/
require_once('BowHTMLDocument.inc.php');
class BowStringNode extends BowAbstractNode
{
var $textContents;
/*Setter and Getter for $textContents*/
function textContents() {return $this->textContents;}
function textContentsSet($someText) {$this->textContents = $someText;}
/*Return an empty string to make compatible with the HTMLWriter functionality*/
function name() {return '';}
/*Return an empty array to make compatible with the HTMLWriter functionality*/
function bowNodeAttributes() {return new BowList();}
}
?>