Kill MOONLIGHT from System.Xml.
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / XmlSerializerNamespaces.cs
index 1017dc49da31609491d8d511e3624287cea3fc99..85d481625fd8de52f7381dc095ffd32325ae00bb 100644 (file)
@@ -1,98 +1,95 @@
-//\r
-// XmlSerializerNamespaces.cs: \r
-//\r
-// Author:\r
-//   John Donagher (john@webmeta.com)\r
-//\r
-// (C) 2002 John Donagher\r
-//\r
-\r
-//\r
-// Permission is hereby granted, free of charge, to any person obtaining\r
-// a copy of this software and associated documentation files (the\r
-// "Software"), to deal in the Software without restriction, including\r
-// without limitation the rights to use, copy, modify, merge, publish,\r
-// distribute, sublicense, and/or sell copies of the Software, and to\r
-// permit persons to whom the Software is furnished to do so, subject to\r
-// the following conditions:\r
-// \r
-// The above copyright notice and this permission notice shall be\r
-// included in all copies or substantial portions of the Software.\r
-// \r
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
-//\r
-\r
-using System;\r
-using System.Xml;\r
-using System.Collections;\r
-using System.Collections.Specialized;\r
-\r
-namespace System.Xml.Serialization\r
-{\r
-       /// <summary>\r
-       /// Summary description for XmlSerializerNamespaces.\r
-       /// </summary>\r
-       public class XmlSerializerNamespaces\r
-       {\r
-               private ListDictionary namespaces;\r
-                       \r
-               public XmlSerializerNamespaces ()\r
-               {\r
-                       namespaces = new ListDictionary ();\r
-               }\r
-       \r
-               public XmlSerializerNamespaces(XmlQualifiedName[] namespaces)\r
-                       : this()\r
-               {\r
-                       foreach(XmlQualifiedName qname in namespaces) \r
-                       {\r
-                               this.namespaces[qname.Name] = qname;\r
-                       }\r
-               }\r
-       \r
-               public XmlSerializerNamespaces(XmlSerializerNamespaces namespaces)\r
-                       : this(namespaces.ToArray())\r
-               {}\r
-       \r
-               public void Add (string prefix, string ns)\r
-               {\r
-                       XmlQualifiedName qname = new XmlQualifiedName(prefix,ns);\r
-                       namespaces[qname.Name] = qname;  \r
-               }\r
-\r
-               public XmlQualifiedName[] ToArray ()\r
-               {\r
-                       XmlQualifiedName[] array = new XmlQualifiedName[namespaces.Count];\r
-                       namespaces.Values.CopyTo(array,0);\r
-                       return array;\r
-               }\r
-       \r
-               public int Count \r
-               {\r
-                       get{ return namespaces.Count; }\r
-               }\r
-\r
-               internal string GetPrefix(string Ns)\r
-               {\r
-                       foreach(string prefix in namespaces.Keys)\r
-                       {\r
-                               if(Ns == ((XmlQualifiedName)namespaces[prefix]).Namespace) \r
-                                       return prefix;\r
-                       }\r
-                       return null;\r
-               }\r
-\r
-               internal ListDictionary Namespaces\r
-               {\r
-                       get {\r
-                               return namespaces;\r
-                       }\r
-               }\r
-       }\r
-}\r
+//
+// XmlSerializerNamespaces.cs: 
+//
+// Author:
+//   John Donagher (john@webmeta.com)
+//
+// (C) 2002 John Donagher
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.Collections;
+using System.Collections.Generic;
+using System.Collections.Specialized;
+
+namespace System.Xml.Serialization
+{
+       /// <summary>
+       /// Summary description for XmlSerializerNamespaces.
+       /// </summary>
+       public class XmlSerializerNamespaces
+       {
+               private ListDictionary namespaces = new ListDictionary ();
+               public XmlSerializerNamespaces ()
+               {
+               }
+
+               public XmlSerializerNamespaces(XmlQualifiedName[] namespaces)
+                       : this()
+               {
+                       foreach(XmlQualifiedName qname in namespaces) 
+                       {
+                               this.namespaces.Add (qname.Name, qname);
+                       }
+               }
+       
+               public XmlSerializerNamespaces(XmlSerializerNamespaces namespaces)
+                       : this(namespaces.ToArray())
+               {}
+       
+               public void Add (string prefix, string ns)
+               {
+                       XmlQualifiedName qname = new XmlQualifiedName(prefix,ns);
+                       namespaces[qname.Name] = qname;  
+               }
+
+               public XmlQualifiedName[] ToArray ()
+               {
+                       XmlQualifiedName[] array = new XmlQualifiedName[namespaces.Count];
+                       namespaces.Values.CopyTo(array,0);
+                       return array;
+               }
+       
+               public int Count 
+               {
+                       get{ return namespaces.Count; }
+               }
+
+               internal string GetPrefix(string Ns)
+               {
+                       foreach(string prefix in namespaces.Keys)
+                       {
+                               if(Ns == ((XmlQualifiedName)namespaces[prefix]).Namespace) 
+                                       return prefix;
+                       }
+                       return null;
+               }
+
+               internal ListDictionary Namespaces
+               {
+                       get {
+                               return namespaces;
+                       }
+               }
+       }
+}