Finished XmlNodeListChildren
[mono.git] / mcs / class / System.XML / System.Xml / XmlElement.cs
index 992da9c97341152a6377c614fdb6b4655c704053..670b514c9f307be8c1bd3bf17123480fb868102b 100644 (file)
@@ -1,10 +1,11 @@
 //
-// System.Xml.XmlElement
+// System.Xml.XmlAttribute
 //
 // Author:
-//   Daniel Weber (daniel-weber@austin.rr.com)
+//   Jason Diamond (jason@injektilo.org)
+//
+// (C) 2002 Jason Diamond  http://injektilo.org/
 //
-// (C) 2001 Daniel Weber
 
 using System;
 
@@ -15,6 +16,7 @@ namespace System.Xml
                #region Fields
 
                private XmlAttributeCollection attributes;
+               private XmlLinkedNode lastLinkedChild;
                private string localName;
                private string namespaceURI;
                private string prefix;
@@ -23,94 +25,120 @@ namespace System.Xml
 
                #region Constructor
 
-               protected internal XmlElement(string prefix, string localName, string namespaceURI, XmlDocument doc) : base(doc)
+               protected internal XmlElement (
+                       string prefix, 
+                       string localName, 
+                       string namespaceURI, 
+                       XmlDocument doc) : base (doc)
                {
                        this.prefix = prefix;
                        this.localName = localName;
                        this.namespaceURI = namespaceURI;
 
-                       attributes = new XmlAttributeCollection(doc, this, null);
+                       attributes = new XmlAttributeCollection (this);
                }
 
                #endregion
 
                #region Properties
 
-               public override XmlAttributeCollection Attributes
-               {
-                       get { return attributes; }
+               public override XmlAttributeCollection Attributes {
+                       get { 
+                               return attributes; 
+                       }
                }
 
-               public virtual bool HasAttributes
-               {
-                       get { return attributes.Count > 0; }
+               public virtual bool HasAttributes {
+                       get { 
+                               return attributes.Count > 0; 
+                       }
                }
 
                [MonoTODO]
-               public override string InnerText
-               {
-                       get { throw new NotImplementedException(); }
-                       set { throw new NotImplementedException(); }
+               public override string InnerText {
+                       get { 
+                               throw new NotImplementedException (); 
+                       }
+
+                       set { 
+                               throw new NotImplementedException (); 
+                       }
                }
 
                [MonoTODO]
-               public override string InnerXml
-               {
-                       get { throw new NotImplementedException(); }
-                       set { throw new NotImplementedException(); }
+               public override string InnerXml {
+                       get { 
+                               throw new NotImplementedException (); 
+                       }
+
+                       set { 
+                               throw new NotImplementedException (); 
+                       }
                }
 
                [MonoTODO]
-               public bool IsEmpty
-               {
-                       get { throw new NotImplementedException(); }
-                       set { throw new NotImplementedException(); }
-               }
+               public bool IsEmpty     {
+                       get { 
+                               throw new NotImplementedException (); 
+                       }
 
-               public override string LocalName
-               {
-                       get { return localName; }
+                       set { 
+                               throw new NotImplementedException (); 
+                       }
                }
 
-               public override string Name
+               internal override XmlLinkedNode LastLinkedChild {
+                       get     {
+                               return lastLinkedChild;
+                       }
+
+                       set {
+                               lastLinkedChild = value;
+                       }
+               }
+               
+               public override string LocalName 
                {
-                       get { return prefix != String.Empty ? prefix + ":" + localName : localName; }
+                       get { 
+                               return localName; 
+                       }
                }
 
-               public override string NamespaceURI
-               {
-                       get { return namespaceURI; }
+               public override string Name {
+                       get { 
+                               return prefix != String.Empty ? prefix + ":" + localName : localName; 
+                       }
                }
 
-               [MonoTODO()]
-               public override XmlNode NextSibling
-               {
-                       get { return base.NextSibling; }
+               public override string NamespaceURI {
+                       get { 
+                               return namespaceURI; 
+                       }
                }
 
-               public override XmlNodeType NodeType
-               {
-                       get { return XmlNodeType.Element; }
+               [MonoTODO]
+               public override XmlNode NextSibling {
+                       get { 
+                               return base.NextSibling; 
+                       }
                }
 
-               public override string Prefix
-               {
-                       get { return prefix; }
+               public override XmlNodeType NodeType {
+                       get { 
+                               return XmlNodeType.Element; 
+                       }
                }
 
                [MonoTODO]
-               public override XmlDocument OwnerDocument
-               {
-                       get { return base.OwnerDocument; }
+               public override XmlDocument OwnerDocument {
+                       get { 
+                               return base.OwnerDocument; 
+                       }
                }
 
-               public override string Value
-               {
-                       get { return null; }
-
-                       set
-                       {
-                               // Do nothing.
+               public override string Prefix {
+                       get { 
+                               return prefix; 
                        }
                }
 
@@ -121,137 +149,141 @@ namespace System.Xml
                [MonoTODO]
                public override XmlNode CloneNode (bool deep)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual string GetAttribute(string name)
+               public virtual string GetAttribute (string name)
                {
-                       throw new NotImplementedException();
+                       XmlNode attributeNode = Attributes.GetNamedItem (name);
+                       return attributeNode != null ? attributeNode.Value : String.Empty;
                }
 
                [MonoTODO]
-               public virtual string GetAttribute(string localName, string namespaceURI)
+               public virtual string GetAttribute (string localName, string namespaceURI)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlAttribute GetAttributeNode(string name)
+               public virtual XmlAttribute GetAttributeNode (string name)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlAttribute GetAttributeNode(string localName, string namespaceURI)
+               public virtual XmlAttribute GetAttributeNode (string localName, string namespaceURI)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlNodeList GetElementsByTagName(string name)
+               public virtual XmlNodeList GetElementsByTagName (string name)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlNodeList GetElementsByTagName(string localName, string namespaceURI)
+               public virtual XmlNodeList GetElementsByTagName (string localName, string namespaceURI)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual bool HasAttribute(string name)
+               public virtual bool HasAttribute (string name)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual bool HasAttribute(string localName, string namespaceURI)
+               public virtual bool HasAttribute (string localName, string namespaceURI)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
-               [MonoTODO("Don't remove default attributes.")]
-               public override void RemoveAll()
+               [MonoTODO ("Don't remove default attributes.")]
+               public override void RemoveAll ()
                {
                        // Remove the child nodes.
-                       base.RemoveAll();
+                       base.RemoveAll ();
 
                        // Remove all attributes.
-                       attributes.RemoveAll();
+                       attributes.RemoveAll ();
                }
 
                [MonoTODO]
-               public virtual void RemoveAllAttributes()
+               public virtual void RemoveAllAttributes ()
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void RemoveAttribute(string name)
+               public virtual void RemoveAttribute (string name)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void RemoveAttribute(string localName, string namespaceURI)
+               public virtual void RemoveAttribute (string localName, string namespaceURI)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlNode RemoveAttributeAt(int i)
+               public virtual XmlNode RemoveAttributeAt (int i)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlAttribute RemoveAttributeNode(XmlAttribute oldAttr)
+               public virtual XmlAttribute RemoveAttributeNode (XmlAttribute oldAttr)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlAttribute RemoveAttributeNode(string localName, string namespaceURI)
+               public virtual XmlAttribute RemoveAttributeNode (string localName, string namespaceURI)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void SetAttribute(string name, string value)
+               public virtual void SetAttribute (string name, string value)
                {
-                       throw new NotImplementedException();
+                       XmlAttribute attribute = OwnerDocument.CreateAttribute (name);
+                       attribute.SetOwnerElement (this);
+                       attribute.Value = value;
+                       Attributes.SetNamedItem (attribute);
                }
 
                [MonoTODO]
-               public virtual void SetAttribute(string localName, string namespaceURI, string value)
+               public virtual void SetAttribute (string localName, string namespaceURI, string value)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlAttribute SetAttributeNode(XmlAttribute newAttr)
+               public virtual XmlAttribute SetAttributeNode (XmlAttribute newAttr)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual XmlAttribute SetAttributeNode(string localName, string namespaceURI)
+               public virtual XmlAttribute SetAttributeNode (string localName, string namespaceURI)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public override void WriteContentTo(XmlWriter w)
+               public override void WriteContentTo (XmlWriter w)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public override void WriteTo(XmlWriter w)
+               public override void WriteTo (XmlWriter w)
                {
-                       throw new NotImplementedException();
+                       throw new NotImplementedException ();
                }
 
                #endregion