/**
  * Parse a document
  * @param path - the path to parse (to an XML document)
  * @access protected
  */
 protected function parseDocument($path)
 {
     $util = new XmlUtility($path, $this);
     while ($util->parseDoc()) {
     }
 }