2002-04-12 Duncan Mak <duncan@ximian.com>
authorDuncan Mak <duncan@mono-cvs.ximian.com>
Fri, 12 Apr 2002 21:15:43 +0000 (21:15 -0000)
committerDuncan Mak <duncan@mono-cvs.ximian.com>
Fri, 12 Apr 2002 21:15:43 +0000 (21:15 -0000)
* XmlAttribute.cs (Prefix): Added preliminary code for set block,
added comment on work that needs to be done here. A new MonoTODO item.

* XmlDocument.cs (ctor): Corrected constructor signature, changed
parameter from 'NameTable' to 'XmlNameTable'.

* XmlDocumentFragment.cs (InnerXml): Added missing set block.

svn path=/trunk/mcs/; revision=3793

mcs/class/System.XML/System.Xml/ChangeLog
mcs/class/System.XML/System.Xml/XmlAttribute.cs
mcs/class/System.XML/System.Xml/XmlDocument.cs
mcs/class/System.XML/System.Xml/XmlDocumentFragment.cs

index 4d69e85903cd4498a9cbe05c88d55c78095ba8fd..53d4006cfd660285e379b76348c2b1898c2b8307 100644 (file)
@@ -1,5 +1,13 @@
 2002-04-12  Duncan Mak  <duncan@ximian.com>
 
+       * XmlAttribute.cs (Prefix): Added preliminary code for set block,
+       added comment on work that needs to be done here. A new MonoTODO item. 
+
+       * XmlDocument.cs (ctor): Corrected constructor signature, changed
+       parameter from 'NameTable' to 'XmlNameTable'.
+
+       * XmlDocumentFragment.cs (InnerXml): Added missing set block.
+
        * XmlCaseOrder.cs: Moved to System.Xml.XPath.
 
 2002-04-10  Duncan Mak  <duncan@ximian.com>
index c70108325dc9ff13680e19bb6dfb75548a1fc477..62bea2219832fa43263e767ce098a2ad8f1c85c1 100644 (file)
@@ -114,7 +114,15 @@ namespace System.Xml
                        }
                }
 
+               [MonoTODO]
+               // We gotta do more in the set block here
+               // We need to do the proper tests and throw
+               // the correct Exceptions
                public override string Prefix {
+                       set {
+                               prefix = value;
+                       }
+                       
                        get {
                                return prefix;
                        }
index 765c1a810b63263433491c663a768be79d6e113f..5a6cc0827e28bbbe1c8bf3faeb89538375a64077 100644 (file)
@@ -32,7 +32,7 @@ namespace System.Xml
                        throw new NotImplementedException ();
                }
 
-               public XmlDocument (NameTable nt) : base (null)
+               public XmlDocument (XmlNameTable nt) : base (null)
                {
                        nameTable = nt;
                }
index 01d4d5f882ee7c0c7a7cc1be9d0fecbcbdec64fc..8bc9aa4aac3a568710db528572e5447fa0d44b64 100644 (file)
@@ -24,7 +24,8 @@ namespace System.Xml
 \r
                [MonoTODO]\r
                public override string InnerXml {\r
-                       get { throw new NotImplementedException(); }\r
+                       set { throw new NotImplementedException (); }\r
+                       get { throw new NotImplementedException (); }\r
                }\r
                \r
                public override string LocalName {\r