2002-12-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / XmlLinkedNode.cs
index f7b64e8a30d690c5476b4ba5059eb4ab6c98c14f..cc6be542fd446b6cd69324dfa922a9fbb33b7789 100644 (file)
@@ -1,3 +1,13 @@
+//
+// System.Xml.XmlLinkedNode
+//
+// Authors:
+//   Jason Diamond <jason@injektilo.org>
+//   Kral Ferch <kral_ferch@hotmail.com>
+//
+// (C) 2002 Jason Diamond, Kral Ferch
+//
+
 using System;
 
 namespace System.Xml
@@ -5,7 +15,9 @@ namespace System.Xml
        public abstract class XmlLinkedNode : XmlNode
        {
                #region Fields
+
                XmlLinkedNode nextSibling;
+               XmlLinkedNode lastLinkedChild;
 
                #endregion
 
@@ -14,11 +26,15 @@ namespace System.Xml
 
                #endregion
 
-               #region Properties              
+               #region Properties
+
                public override XmlNode NextSibling
                {
                        get {
-                               if (Object.ReferenceEquals(nextSibling, ParentNode.LastLinkedChild.NextLinkedSibling) == false) {
+                               if(ParentNode == null) {
+                                       return null;
+                               }
+                               else if (Object.ReferenceEquals(nextSibling, ParentNode.LastLinkedChild.NextLinkedSibling) == false) {
                                        return nextSibling;
                                }
                                else {
@@ -33,14 +49,29 @@ namespace System.Xml
                        set { nextSibling = value; }
                }
 
-               [MonoTODO]
                public override XmlNode PreviousSibling
                {
                        get {
-                               throw new NotImplementedException ();
+                               if (ParentNode != null) {
+                                       XmlNode node = ParentNode.FirstChild;
+                                       if (node != this) {
+                                               do {
+                                                       if (node.NextSibling == this)
+                                                               return node;
+                                               } while ((node = node.NextSibling) != null);
+                                       }                                       
+                               }
+                               return null;
                        }
                }
 
+               // copied this way from XmlElement
+               internal override XmlLinkedNode LastLinkedChild
+               {
+                       get { return lastLinkedChild; }
+                       set { lastLinkedChild = value; }
+               }
+
                #endregion
        }
 }