<?php
/**
 * ****************************************************************
 * Project:      *
 * Copyright:    Copyright (c) 2007
 * Company:      Thomas Niemann
 * ****************************************************************
 * Workfile:     XMLElement.php
 * ****************************************************************
 * Description:  
 *                
 * ***************************************************************/
class XMLElement extends SimpleXMLElement {
	/*****************************************************************
	 * overload function attributes() to allow access to attributes
	 *****************************************************************/
	function attributes() {
		return new XMLAttributes(parent :: attributes());
	}	
	function getValue() {
		return (string) $this;
	}
}
?>