* @package generis */ class core_kernel_classes_Literal extends core_kernel_classes_Container { // --- ASSOCIATIONS --- // generateAssociationEnd : // --- ATTRIBUTES --- /** * Short description of attribute literal * * @access public * @var string */ public $literal = ''; // --- OPERATIONS --- /** * Short description of method __construct * * @access public * @author firstname and lastname of author, * @param string literal * @param string debug * @return void */ public function __construct($literal, $debug = '') { $this->literal = strval($literal); } /** * Short description of method __toString * * @access public * @author firstname and lastname of author, * @return string */ public function __toString() { $returnValue = (string) ''; $returnValue = $this->literal; return (string) $returnValue; } }