2002-04-12 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml / XmlDocument.cs
index a644b076656e3f864e6bacf6c46f3017c83f8c49..5a6cc0827e28bbbe1c8bf3faeb89538375a64077 100644 (file)
@@ -1,4 +1,3 @@
-// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
 // System.Xml.XmlDocument
 //
@@ -9,22 +8,39 @@
 
 using System;
 using System.IO;
+using System.Xml.XPath;
+using System.Diagnostics;
 
 namespace System.Xml
 {
-
-       public delegate void XmlNodeChangedEventHandler (XmlNodeChangedEventArgs args);
-
-       /// <summary>
-       /// Abstract class XmlNodeList.
-       /// </summary>
        public class XmlDocument : XmlNode
        {
-               // Private data members
-               XmlResolver _resolver = null;
+               #region Fields
+
+               XmlLinkedNode lastLinkedChild;
+               XmlNameTable nameTable;
+
+               #endregion
+
+               #region Constructors
+
+               public XmlDocument () : base (null) { }
+
+               [MonoTODO]
+               protected internal XmlDocument (XmlImplementation imp) : base (null)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public XmlDocument (XmlNameTable nt) : base (null)
+               {
+                       nameTable = nt;
+               }
+
+               #endregion
+
+               #region Events
 
-               // Public events
-               //===========================================================================
                public event XmlNodeChangedEventHandler NodeChanged;
 
                public event XmlNodeChangedEventHandler NodeChanging;
@@ -37,29 +53,17 @@ namespace System.Xml
 
                public event XmlNodeChangedEventHandler NodeRemoving;
 
-               // public properties
+               #endregion
 
-               /// <summary>
-               /// Get the base URI for this document (the location from where the document was loaded)
-               /// </summary>
-               /// <example>If a document was loaded with doc.Load("c:\tmp\mydoc.xml"),
-               /// then BaseURI would hold "c:\tmp\mydoc.xml"</example>
-               public override string BaseURI
-               {
-                       get
-                       {
-                               // TODO - implement XmlDocument.BaseURI {get;}
-                               throw new NotImplementedException("BaseURI.get not implemented");
-                       }
+               #region Properties
+
+               [MonoTODO]
+               public override string BaseURI {
+                       get { throw new NotImplementedException(); }
                }
 
-               /// <summary>
-               /// Get the root element for the document.  If no root exists, null is returned.
-               /// </summary>
-               public XmlElement DocumentElement
-               {
-                       get
-                       {
+               public XmlElement DocumentElement {
+                       get {
                                XmlNode node = FirstChild;
 
                                while (node != null) {
@@ -72,480 +76,488 @@ namespace System.Xml
                        }
                }
 
-               /// <summary>
-               /// Gets the node containing the DOCTYPE declaration.
-               /// </summary>
-               public virtual XmlDocumentType DocumentType
-               {
-                       get
-                       {
-                               // TODO - implement XmlDocument.DocumentType
-                               throw new NotImplementedException("XmlDocument.DocumentType not implemented");
-                       }
+               [MonoTODO]
+               public virtual XmlDocumentType DocumentType {
+                       get { throw new NotImplementedException(); }
                }
 
+               [MonoTODO]
+               public XmlImplementation Implementation {
+                       get { throw new NotImplementedException(); }
+               }
 
-               /// <summary>
-               /// Get the XmlImplemenation for the current document.
-               /// </summary>
-               public XmlImplementation Implementation
-               {
-                       get
-                       {
-                               // TODO - implement XmlDocument.Implementation
-                               throw new NotImplementedException("Implementation not implemented");
+               [MonoTODO ("Setter.")]
+               public override string InnerXml {
+                       get {
+                               // Not sure why this is an override.  Passing through for now.
+                               return base.InnerXml;
                        }
+                       set { throw new NotImplementedException(); }
                }
 
+               public override bool IsReadOnly {
+                       get { return false; }
+               }
 
-               /// <summary>
-               /// Get/Set the markup representing the children of the document.
-               /// </summary>
-               public override string InnerXml
-               {
-                       get
-                       {
-                               // TODO - implement XmlDocument.InnerXml {get;}
-                               throw new NotImplementedException("InnerXml get not implemented");
-                       }
-                       set
-                       {
-                               // TODO - implement XmlDocument.InnerXml {set;}
-                               throw new NotImplementedException("InnerXml set not implemented");
+               internal override XmlLinkedNode LastLinkedChild {
+                       get     {
+                               return lastLinkedChild;
                        }
-               }
 
-               /// <summary>
-               /// Get a value indicating if the document is read-only.
-               /// </summary>
-               public override bool IsReadOnly
-               {
-                       get
-                       {
-                               return false;
+                       set {
+                               lastLinkedChild = value;
                        }
                }
-
-               /// <summary>
-               /// Get the local name of the node.  For documents, returns "#document"
-               /// </summary>
+               
                public override string LocalName {
-                       get
-                       {
-                               return "#document";
-                       }
+                       get { return "#document"; }
                }
 
-               /// <summary>
-               /// Get the qualified name of the node.  For documents, returns "#document"
-               /// </summary>
-               public override string Name
-               {
-                       get
-                       {
-                               return "#document";
-                       }
+               public override string Name {
+                       get { return "#document"; }
                }
 
-               public XmlNameTable NameTable
-               {
-                       get
-                       {
-                               // TODO - implement XmlDocument.NameTable {get;}
-                               throw new NotImplementedException("NameTable get not implemented");
-                       }
+               public XmlNameTable NameTable {
+                       get { return nameTable; }
                }
 
+               public override XmlNodeType NodeType {
+                       get { return XmlNodeType.Document; }
+               }
 
-               public override XmlNodeType NodeType
-               {
-                       get
-                       {
-                               return XmlNodeType.Document;
-                       }
+               public override XmlDocument OwnerDocument {
+                       get { return null; }
                }
 
-               /// <summary>
-               /// Returns OwnerDocument.  For an XmlDocument, this property is always null.
-               /// </summary>
-               public override XmlDocument OwnerDocument
-               {
-                       get
-                       {
-                               return null;
-                       }
+               [MonoTODO]
+               public bool PreserveWhitespace {
+                       get { throw new NotImplementedException(); }
+                       set { throw new NotImplementedException(); }
                }
 
-               public bool PreserveWhitespace
-               {
-                       get
-                       {
-                               // TODO - implement XmlDocument.PreserveWhitespace {get;}
-                               throw new NotImplementedException("PreserveWhitespace get not implemented");
-                       }
-                       set
-                       {
-                               // TODO - implement XmlDocument.PreserveWhitespace {set;}
-                               throw new NotImplementedException("PreserveWhitespace set not implemented");
-                       }
+               [MonoTODO]
+               public virtual XmlResolver XmlResolver {
+                       set { throw new NotImplementedException(); }
                }
 
-               public XmlResolver XmlResolver
+               #endregion
+
+               #region Methods
+
+               [MonoTODO]
+               public override XmlNode CloneNode (bool deep)
                {
-                       set
-                       {
-                               // TODO - Finish/test XmlDocument.XmlResolver {set;}
-                               _resolver = value;
-                       }
+                       throw new NotImplementedException ();
                }
 
-               // Public Methods
-               //===========================================================================
-               public override XmlNode CloneNode(bool deep)
+               public XmlAttribute CreateAttribute (string name)
                {
-                       // TODO - implement XmlDocument.CloneNode(bool)
-                       throw new NotImplementedException("CloneNode(bool) not implemented");
+                       return CreateAttribute (name, String.Empty);
                }
 
-               public XmlAttribute CreateAttribute(string name)
+               public XmlAttribute CreateAttribute (string qualifiedName, string namespaceURI)
                {
-                       // TODO - implement XmlDocument.CreateAttribute(string name)
-                       throw new NotImplementedException("CreateAttribute(string name) not implemented");
+                       string prefix;
+                       string localName;
+
+                       ParseName (qualifiedName, out prefix, out localName);
+
+                       return CreateAttribute (prefix, localName, namespaceURI);
                }
 
-               public XmlAttribute CreateAttribute(string qualifiedName,string namespaceURI)
+               public virtual XmlAttribute CreateAttribute (string prefix, string localName, string namespaceURI)
                {
-                       // TODO - implement XmlDocument.CreateAttribute(string, string)
-                       throw new NotImplementedException("CreateAttribute(string, string) not implemented");
+                       if ((localName == null) || (localName == String.Empty))
+                               throw new ArgumentException ("The attribute local name cannot be empty.");
+
+                       return new XmlAttribute (prefix, localName, namespaceURI, this);
                }
 
-               public virtual XmlAttribute CreateAttribute(
-                       string prefix,
-                       string localName,
-                       string namespaceURI
-                       )
+               public virtual XmlCDataSection CreateCDataSection (string data)
                {
-                       // TODO - implement XmlDocument.CreateAttribute(prefix, localName, namespaceURI)
-                       throw new NotImplementedException("CreateAttribute(prefix, localName, namespaceURI) not implemented");
+                       return new XmlCDataSection (data, this);
                }
 
-               public virtual XmlCDataSection CreateCDataSection(string data)
+               public virtual XmlComment CreateComment (string data)
                {
-                       // TODO - implement XmlDocument.CreateCDataSection(string data)
-                       throw new NotImplementedException("CreateCDataSection(string data) not implemented");
+                       return new XmlComment(data, this);
                }
 
-
-               public virtual XmlComment CreateComment(string data)
+               [MonoTODO]
+               protected internal virtual XmlAttribute CreateDefaultAttribute (string prefix, string localName, string namespaceURI)
                {
-                       // TODO - implement XmlDocument.CreateComment(string data)
-                       throw new NotImplementedException("CreateComment(string data) not implemented");
+                       throw new NotImplementedException ();
                }
 
-               public virtual XmlDocumentFragment CreateDocumentFragment()
+               [MonoTODO]
+               public virtual XmlDocumentFragment CreateDocumentFragment ()
                {
-                       // TODO - implement XmlDocument.CreateDocumentFragment
-                       throw new NotImplementedException("CreateDocumentFragment not implemented");
+                       throw new NotImplementedException ();
                }
 
-               public virtual XmlDocumentType CreateDocumentType(
-                       string name,
-                       string publicId,
-                       string systemId,
-                       string internalSubset
-                       )
+               public virtual XmlDocumentType CreateDocumentType (string name, string publicId,
+                                                                  string systemId, string internalSubset)
                {
-                       // TODO - implement XmlDocument.CreateDocumentType
-                       throw new NotImplementedException("CreateDocumentType not implemented");
+                       return new XmlDocumentType (name, publicId, systemId, internalSubset, this);
                }
 
-               public XmlElement CreateElement(string name)
+               public XmlElement CreateElement (string name)
                {
-                       // TODO - implement XmlDocument.CreateElement(string name)
-                       throw new NotImplementedException("CreateElement(string name) not implemented");
+                       return CreateElement (name, String.Empty);
                }
 
-               public XmlElement CreateElement(
-                       string qualifiedName,
-                       string namespaceURI
-                       )
+               public XmlElement CreateElement (
+                       string qualifiedName, 
+                       string namespaceURI)
                {
-                       // TODO - implement XmlDocument.CreateElement(string qualifiedName,     string namespaceURI)
-                       throw new NotImplementedException("CreateElement(string qualifiedName,  string namespaceURI) not implemented");
+                       string prefix;
+                       string localName;
+
+                       ParseName (qualifiedName, out prefix, out localName);
+
+                       return CreateElement (prefix, localName, namespaceURI);
                }
 
-               public virtual XmlElement CreateElement(
+               public virtual XmlElement CreateElement (
                        string prefix,
                        string localName,
-                       string namespaceURI
-                       )
+                       string namespaceURI)
                {
-                       return new XmlElement(prefix, localName, namespaceURI, this);
+                       if ((localName == null) || (localName == String.Empty))
+                               throw new ArgumentException ("The local name for elements or attributes cannot be null or an empty string.");
+
+                       return new XmlElement (prefix, localName, namespaceURI, this);
                }
 
+               [MonoTODO]
+               public virtual XmlEntityReference CreateEntityReference (string name)
+               {
+                       throw new NotImplementedException ();
+               }
 
-               public virtual XmlEntityReference CreateEntityReference(string name)
+               [MonoTODO]
+               protected internal virtual XPathNavigator CreateNavigator (XmlNode node)
                {
-                       // TODO - implement XmlDocument.CreateEntityReference
-                       throw new NotImplementedException("XmlDocument.CreateEntityReference not implemented.");
+                       throw new NotImplementedException ();
                }
 
-               public virtual XmlNode CreateNode(
+               public virtual XmlNode CreateNode (
                        string nodeTypeString,
                        string name,
-                       string namespaceURI
-                       )
+                       string namespaceURI)
                {
-                       // TODO - implement XmlDocument.CreateNode(string, string, string)
-                       throw new NotImplementedException("XmlDocument.CreateNode not implemented.");
+                       return CreateNode (GetNodeTypeFromString (nodeTypeString), name, namespaceURI);
                }
 
-               public virtual XmlNode CreateNode(
+               public virtual XmlNode CreateNode (
                        XmlNodeType type,
                        string name,
-                       string namespaceURI
-                       )
+                       string namespaceURI)
                {
-                       // TODO - implement XmlDocument.CreateNode(XmlNodeType, string, string)
-                       throw new NotImplementedException("XmlDocument.CreateNode not implemented.");
+                       string prefix = null;
+                       string localName = name;
+
+                       if ((type == XmlNodeType.Attribute) || (type == XmlNodeType.Element) || (type == XmlNodeType.EntityReference))
+                               ParseName (name, out prefix, out localName);
+                       
+                       return CreateNode (type, prefix, localName, namespaceURI);
                }
 
-               public virtual XmlNode CreateNode(
+               public virtual XmlNode CreateNode (
                        XmlNodeType type,
                        string prefix,
                        string name,
-                       string namespaceURI
-                       )
-               {
-                       // TODO - implement XmlDocument.CreateNode(XmlNodeType, string, string, string)
-                       throw new NotImplementedException("XmlDocument.CreateNode not implemented.");
+                       string namespaceURI)
+               {
+                       switch (type) {
+                               case XmlNodeType.Attribute: return CreateAttribute (prefix, name, namespaceURI);
+                               case XmlNodeType.CDATA: return CreateCDataSection (null);
+                               case XmlNodeType.Comment: return CreateComment (null);
+                               case XmlNodeType.Document: return new XmlDocument (); // TODO - test to see which constructor to use, i.e. use existing NameTable or not.
+                               case XmlNodeType.DocumentFragment: return CreateDocumentFragment ();
+                               case XmlNodeType.DocumentType: return CreateDocumentType (null, null, null, null);
+                               case XmlNodeType.Element: return CreateElement (prefix, name, namespaceURI);
+                               case XmlNodeType.EntityReference: return CreateEntityReference (null);
+                               case XmlNodeType.ProcessingInstruction: return CreateProcessingInstruction (null, null);
+                               case XmlNodeType.SignificantWhitespace: return CreateSignificantWhitespace (String.Empty);
+                               case XmlNodeType.Text: return CreateTextNode (null);
+                               case XmlNodeType.Whitespace: return CreateWhitespace (String.Empty);
+                               case XmlNodeType.XmlDeclaration: return CreateXmlDeclaration ("1.0", null, null);
+                               default: throw new ArgumentOutOfRangeException(String.Format("{0}\nParameter name: {1}",
+                                                        "Specified argument was out of the range of valid values", type.ToString ()));
+                       }
                }
 
-               public virtual XmlProcessingInstruction CreateProcessingInstruction(
+               public virtual XmlProcessingInstruction CreateProcessingInstruction (
                        string target,
-                       string data
-                       )
+                       string data)
                {
-                       // TODO - implement XmlDocument.CreateProcessingInstruction
-                       throw new NotImplementedException("XmlDocument.CreateProcessingInstruction not implemented.");
+                       return new XmlProcessingInstruction (target, data, this);
                }
 
-               public virtual XmlSignificantWhitespace CreateSignificantWhitespace(string text )
+               public virtual XmlSignificantWhitespace CreateSignificantWhitespace (string text)
                {
-                       // TODO - implement XmlDocument.CreateSignificantWhitespace
-                       throw new NotImplementedException("XmlDocument.CreateSignificantWhitespace not implemented.");
+                       foreach (char c in text)
+                               if ((c != ' ') && (c != '\r') && (c != '\n') && (c != '\t'))
+                                   throw new ArgumentException ("Invalid whitespace characters.");
+                        
+                       return new XmlSignificantWhitespace (text, this);
                }
 
-               public virtual XmlText CreateTextNode(string text)
+               public virtual XmlText CreateTextNode (string text)
                {
-                       // TODO - implement XmlDocument.CreateTextNode
-                       throw new NotImplementedException("XmlDocument.CreateTextNode not implemented.");
+                       return new XmlText (text, this);
                }
 
-               public virtual XmlWhitespace CreateWhitespace(string text)
+               public virtual XmlWhitespace CreateWhitespace (string text)
                {
-                       // TODO - implement XmlDocument.CreateWhitespace
-                       throw new NotImplementedException("XmlDocument.CreateWhitespace not implemented.");
+                       foreach (char c in text)
+                               if ((c != ' ') && (c != '\r') && (c != '\n') && (c != '\t'))
+                                   throw new ArgumentException ("Invalid whitespace characters.");
+                        
+                       return new XmlWhitespace (text, this);
                }
 
-               public virtual XmlDeclaration CreateXmlDeclaration(
-                       string version,
-                       string encoding,
-                       string standalone
-                       )
+               public virtual XmlDeclaration CreateXmlDeclaration (string version, string encoding,
+                                                                   string standalone)
                {
-                       // TODO - implement XmlDocument.CreateXmlDeclaration
-                       throw new NotImplementedException("XmlDocument.CreateXmlDeclaration not implemented.");
+                       if (version != "1.0")
+                               throw new ArgumentException ("version string is not correct.");
+
+                       if  ((standalone != null) && !((standalone == "yes") || (standalone == "no")))
+                               throw new ArgumentException ("standalone string is not correct.");
+                       
+                       return new XmlDeclaration (version, encoding, standalone, this);
                }
 
-               public virtual XmlElement GetElementById(string elementId)
+               [MonoTODO]
+               public virtual XmlElement GetElementById (string elementId)
                {
-                       // TODO - implement XmlDocument.GetElementById
-                       throw new NotImplementedException("XmlDocument.GetElementById not implemented.");
+                       throw new NotImplementedException ();
                }
 
-               public virtual XmlNodeList GetElementsByTagName(string name)
+               [MonoTODO]
+               public virtual XmlNodeList GetElementsByTagName (string name)
                {
-                       // TODO - implement XmlDocument.GetElementsByTagName(name)
-                       throw new NotImplementedException("XmlDocument.GetElementsByTagName not implemented.");
+                       throw new NotImplementedException ();
                }
 
-               public virtual XmlNodeList GetElementsByTagName(
-                       string localName,
-                       string namespaceURI
-                       )
+               [MonoTODO]
+               public virtual XmlNodeList GetElementsByTagName (string localName, string namespaceURI)
                {
-                       // TODO - implement XmlDocument.GetElementsByTagName(localName, namespaceURI)
-                       throw new NotImplementedException("XmlDocument.GetElementsByTagName not implemented.");
+                       throw new NotImplementedException();
                }
 
-               public virtual XmlNode ImportNode(
-                       XmlNode node,
-                       bool deep
-                       )
+               private XmlNodeType GetNodeTypeFromString (string nodeTypeString)
                {
-                       // TODO - implement XmlDocument.ImportNode
-                       throw new NotImplementedException("XmlDocument.ImportNode not implemented.");
+                       switch (nodeTypeString) {
+                               case "attribute": return XmlNodeType.Attribute;
+                               case "cdatasection": return XmlNodeType.CDATA;
+                               case "comment": return XmlNodeType.Comment;
+                               case "document": return XmlNodeType.Document;
+                               case "documentfragment": return XmlNodeType.DocumentFragment;
+                               case "documenttype": return XmlNodeType.DocumentType;
+                               case "element": return XmlNodeType.Element;
+                               case "entityreference": return XmlNodeType.EntityReference;
+                               case "processinginstruction": return XmlNodeType.ProcessingInstruction;
+                               case "significantwhitespace": return XmlNodeType.SignificantWhitespace;
+                               case "text": return XmlNodeType.Text;
+                               case "whitespace": return XmlNodeType.Whitespace;
+                               default:
+                                       throw new ArgumentException(String.Format("The string doesn't represent any node type : {0}.", nodeTypeString));
+                       }
                }
 
-               public virtual void Load(Stream inStream)
+               [MonoTODO]
+               public virtual XmlNode ImportNode (XmlNode node, bool deep)
                {
-                       // TODO - implement XmlDocument.Load(Stream)
-                       throw new NotImplementedException("XmlDocument.Load(Stream) not implemented.");
+                       throw new NotImplementedException ();
                }
 
-               public virtual void Load(string filename)
+               [MonoTODO]
+               public virtual void Load (Stream inStream)
                {
-                       // TODO - implement XmlDocument.Load(string)
-                       throw new NotImplementedException("XmlDocument.Load(string) not implemented.");
+                       throw new NotImplementedException ();
                }
 
-               public virtual void Load(TextReader txtReader)
+               public virtual void Load (string filename)
                {
-                       // TODO - implement XmlDocument.Load(TextReader)
-                       throw new NotImplementedException("XmlDocument.Load(TextReader) not implemented.");
+                       XmlReader xmlReader = new XmlTextReader (new StreamReader (filename));
+                       Load (xmlReader);
                }
 
-               public virtual void Load(XmlReader reader)
+               [MonoTODO]
+               public virtual void Load (TextReader txtReader)
                {
-                       // TODO - implement XmlDocument.Load(XmlReader)
-                       throw new NotImplementedException("XmlDocument.Load(XmlReader) not implemented.");
+                       throw new NotImplementedException ();
                }
 
-               public virtual void LoadXml(string xml)
+               public virtual void Load (XmlReader xmlReader)
                {
-                       XmlReader       xmlReader = new XmlTextReader(new StringReader(xml));
-                       XmlNode         currentNode = this;
-                       XmlNode         newNode;
-
                        // Reset our document
                        // For now this just means removing all our children but later this
                        // may turn out o need to call a private method that resets other things
                        // like properties we have, etc.
-                       RemoveAll();
+                       RemoveAll ();
+
+                       XmlNode currentNode = this;
+                       XmlNode newNode;
 
-                       // Wrapping in try/catch for now until XmlTextReader starts throwing XmlException
-                       try 
+                       while (xmlReader.Read ()) 
                        {
-                               while (xmlReader.Read())
-                               {
-                                       switch(xmlReader.NodeType)
-                                       {
-                                               case XmlNodeType.Element:
-                                                       newNode = CreateElement(xmlReader.Name, xmlReader.LocalName, xmlReader.NamespaceURI);
-                                                       currentNode.AppendChild(newNode);
-                                                       if (!xmlReader.IsEmptyElement)
-                                                       {
-                                                               currentNode = newNode;
-                                                       }
-                                                       break;
-                                               
-                                               case XmlNodeType.Text:
-                                                       newNode = CreateTextNode(xmlReader.Value);
-                                                       currentNode.AppendChild(newNode);
-                                                       break;
-
-                                               case XmlNodeType.EndElement:
-                                                       currentNode = currentNode.ParentNode;
-                                                       break;
-                                       }
+                               switch (xmlReader.NodeType) {
+
+                               case XmlNodeType.CDATA:
+                                       newNode = CreateCDataSection(xmlReader.Value);
+                                       currentNode.AppendChild (newNode);
+                                       break;
+
+                               case XmlNodeType.Comment:
+                                       newNode = CreateComment (xmlReader.Value);
+                                       currentNode.AppendChild (newNode);
+                                       break;
+
+                               case XmlNodeType.Element:
+                                       XmlElement element = CreateElement (xmlReader.Prefix, xmlReader.LocalName, xmlReader.NamespaceURI);
+                                       currentNode.AppendChild (element);
+
+                                       // set the element's attributes.
+                                       while (xmlReader.MoveToNextAttribute ())
+                                               element.SetAttribute (xmlReader.Name, xmlReader.Value);
+
+                                       xmlReader.MoveToElement ();
+
+                                       // if this element isn't empty, push it onto our "stack".
+                                       if (!xmlReader.IsEmptyElement)
+                                               currentNode = element;
+
+                                       break;
+
+                               case XmlNodeType.EndElement:
+                                       currentNode = currentNode.ParentNode;
+                                       break;
+
+                               case XmlNodeType.ProcessingInstruction:
+                                       newNode = CreateProcessingInstruction (xmlReader.Name, xmlReader.Value);
+                                       currentNode.AppendChild (newNode);
+                                       break;
+
+                               case XmlNodeType.Text:
+                                       newNode = CreateTextNode (xmlReader.Value);
+                                       currentNode.AppendChild (newNode);
+                                       break;
                                }
                        }
-                       catch(Exception e)
-                       {
-                               throw new XmlException(e.Message, e);
-                       }
                }
 
-               public virtual void Save(Stream outStream)
+               public virtual void LoadXml (string xml)
                {
-                       // TODO - implement XmlDocument.Save(Stream)
-                       throw new NotImplementedException("XmlDocument.Save(Stream) not implemented.");
+                       XmlReader xmlReader = new XmlTextReader (new StringReader (xml));
+                       Load (xmlReader);
                }
 
-               public virtual void Save(string filename)
+               internal void onNodeChanged (XmlNode node, XmlNode Parent)
                {
-                       // TODO - implement XmlDocument.Save(string)
-                       throw new NotImplementedException("XmlDocument.Save(string) not implemented.");
+                       if (NodeChanged != null)
+                               NodeInserted (node, new XmlNodeChangedEventArgs
+                                       (XmlNodeChangedAction.Change,
+                                       node, Parent, Parent));
                }
 
-               public virtual void Save(TextWriter writer)
+               internal void onNodeChanging(XmlNode node, XmlNode Parent)
                {
-                       // TODO - implement XmlDocument.Save(TextWriter)
-                       throw new NotImplementedException("XmlDocument.Save(TextWriter) not implemented.");
+                       if (NodeInserting != null)
+                               NodeChanging (node, new XmlNodeChangedEventArgs
+                                       (XmlNodeChangedAction.Change,
+                                       node, Parent, Parent));
                }
 
-               public virtual void Save(XmlWriter writer)
+               internal void onNodeInserted (XmlNode node, XmlNode newParent)
                {
-                       // TODO - implement XmlDocument.Save(XmlWriter)
-                       throw new NotImplementedException("XmlDocument.Save(XmlWriter) not implemented.");
+                       if (NodeInserted != null)
+                               NodeInserted (node, new XmlNodeChangedEventArgs
+                                       (XmlNodeChangedAction.Insert,
+                                       node, null, newParent));
                }
 
-               public override void WriteContentTo(XmlWriter w)
+               internal void onNodeInserting (XmlNode node, XmlNode newParent)
                {
-                       // TODO - implement XmlDocument.WriteContentTo
-                       throw new NotImplementedException("XmlDocument.WriteContentTo not implemented.");
+                       if (NodeInserting != null)
+                               NodeInserting (node, new XmlNodeChangedEventArgs
+                                       (XmlNodeChangedAction.Insert,
+                                       node, null, newParent));
                }
 
-               public override void WriteTo(XmlWriter w)
+               internal void onNodeRemoved (XmlNode node, XmlNode oldParent)
                {
-                       // TODO - implement XmlDocument.WriteTo
-                       throw new NotImplementedException("XmlDocument.WriteTo not implemented.");
+                       if (NodeRemoved != null)
+                               NodeRemoved (node, new XmlNodeChangedEventArgs
+                                       (XmlNodeChangedAction.Remove,
+                                       node, oldParent, null));
                }
 
-
-               // Internal functions
-               //===========================================================================
-               internal void onNodeChanging(XmlNode node, XmlNode Parent)
+               internal void onNodeRemoving (XmlNode node, XmlNode oldParent)
                {
-                       if (NodeInserting != null)
-                               NodeChanging( new XmlNodeChangedEventArgs(XmlNodeChangedAction.Change,
-                                       node, Parent, Parent));
+                       if (NodeRemoving != null)
+                               NodeRemoving (node, new XmlNodeChangedEventArgs
+                                       (XmlNodeChangedAction.Remove,
+                                       node, oldParent, null));
                }
 
-               internal void onNodeChanged(XmlNode node, XmlNode Parent)
+               private void ParseName (string name, out string prefix, out string localName)
                {
-                       if (NodeChanged != null)
-                               NodeInserted( new XmlNodeChangedEventArgs(XmlNodeChangedAction.Change,
-                                       node, Parent, Parent));
+                       int indexOfColon = name.IndexOf (':');
+                       
+                       if (indexOfColon != -1) {
+                               prefix = name.Substring (0, indexOfColon);
+                               localName = name.Substring (indexOfColon + 1);
+                       } else {
+                               prefix = "";
+                               localName = name;
+                       }
                }
 
-               internal void onNodeInserting(XmlNode node, XmlNode newParent)
+               [MonoTODO]
+               public virtual XmlNode ReadNode(XmlReader reader)
                {
-                       if (NodeInserting != null)
-                               NodeInserting( new XmlNodeChangedEventArgs(XmlNodeChangedAction.Insert,
-                                       node, null, newParent));
+                       throw new NotImplementedException ();
                }
 
-               internal void onNodeInserted(XmlNode node, XmlNode newParent)
+               [MonoTODO]
+               public virtual void Save(Stream outStream)
                {
-                       if (NodeInserted != null)
-                               NodeInserted( new XmlNodeChangedEventArgs(XmlNodeChangedAction.Insert,
-                                       node, null, newParent));
+                       throw new NotImplementedException ();
                }
 
-               internal void onNodeRemoving(XmlNode node, XmlNode oldParent)
+               [MonoTODO]
+               public virtual void Save (string filename)
                {
-                       if (NodeRemoving != null)
-                               NodeRemoving(new XmlNodeChangedEventArgs(XmlNodeChangedAction.Remove,
-                                       node, oldParent, null));
+                       throw new NotImplementedException ();
                }
 
-               internal void onNodeRemoved(XmlNode node, XmlNode oldParent)
+               [MonoTODO]
+               public virtual void Save (TextWriter writer)
                {
-                       if (NodeRemoved != null)
-                               NodeRemoved(new XmlNodeChangedEventArgs(XmlNodeChangedAction.Remove,
-                                       node, oldParent, null));
+                       throw new NotImplementedException ();
+               }
 
+               [MonoTODO]
+               public virtual void Save (XmlWriter writer)
+               {
+                       throw new NotImplementedException ();
                }
 
-               // Constructors
-               //===========================================================================
-               public XmlDocument() : base(null)
+               public override void WriteContentTo (XmlWriter w)
                {
-                       FOwnerDocument = this;
+                       foreach(XmlNode childNode in ChildNodes)
+                               childNode.WriteTo(w);
                }
 
+               public override void WriteTo (XmlWriter w)
+               {
+                       WriteContentTo(w);
+               }
 
+               #endregion
        }
 }