/**
  * Creates a DOM document representation of the object.
  *
  * @exception ParserConfigurationException
  * @return Document
  */
 public Document makeDocument() throws ParserConfigurationException {
   Document doc = UJAXP.makeDocument();
   makeElement(doc);
   return (doc);
 }