<?php
//
// +----------------------------------------------------------------------+
// | PHP Version 4 |
// +----------------------------------------------------------------------+
// | Copyright (c) 2002-2003 Tereshchenko Andrey. All rights reserved. |
// +----------------------------------------------------------------------+
// | This source file 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; either |
// | version 2.1 of the License, or (at your option) any later version. |
// | |
// | This source file 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. |
// +----------------------------------------------------------------------+
// | Authors: |
// | Tereshchenko Andrey <hide@address.com> |
// +----------------------------------------------------------------------+
//
// $Id: DocumentFragment.php,v 0.2 2003/05/23 18:00:48 anter Exp $
/**
* @package myXML
* @subpackage myDOM
*/
/**
* Base class for other nodes.
*/
require_once('Node.php');
/**
* DocumentFragment class.
*
* See DOM for details.
*
* @author Tereshchenko Andrey <hide@address.com>
* @copyright Tereshchenko Andrey 2002-2003
* @version 0.2 2003/05/23
* @access public
* @package myXML
* @subpackage myDOM
* @link http://phpmyxml.sourceforge.net/
*/
class DocumentFragment extends Node
{
/**
* Constructor.
*
* @param object Document
* @return object DocumentFragment
* @access private
*/
function DocumentFragment(&$ownerDocument)
{
$this->Node('#document-fragment', &$ownerDocument);
$this->nodeType = DOCUMENT_FRAGMENT_NODE;
}
}
?>