Handle more type conversion.
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaAnnotated.cs
index 95d031734580f2b267316b823e67c8e74b8074e6..a9f788aa83f8d14fcddf624551725b3f21d2974d 100644 (file)
@@ -1,77 +1,77 @@
-// Author: Dwivedi, Ajay kumar\r
-//            Adwiv@Yahoo.com\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
-using System;\r
-using System.Collections;\r
-using System.Xml;\r
-using System.Xml.Serialization;\r
-\r
-namespace System.Xml.Schema\r
-{\r
-       /// <summary>\r
-       /// Summary description for XmlSchemaAnnotated.\r
-       /// </summary>\r
-\r
-       public class XmlSchemaAnnotated : XmlSchemaObject\r
-       {\r
-               private XmlSchemaAnnotation annotation;\r
-               private string id;\r
-               private XmlAttribute[] unhandledAttributes;\r
-\r
-               public XmlSchemaAnnotated()\r
-               {}\r
-               \r
-               [System.Xml.Serialization.XmlAttribute("id", DataType="ID")]\r
-               public string Id \r
-               { \r
-                       get{ return  id; } \r
-                       set{ id = value; } \r
-               }\r
-               \r
-               [XmlElement("annotation", Type=typeof(XmlSchemaAnnotation))]\r
-               public XmlSchemaAnnotation Annotation \r
-               { \r
-                       get{ return  annotation; } \r
-                       set{ annotation = value; } \r
-               }\r
-               \r
-               [XmlAnyAttribute]\r
-               public XmlAttribute[] UnhandledAttributes \r
-               { \r
-                       get\r
-                       {\r
-                               if(unhandledAttributeList != null)\r
-                               {\r
-                                       unhandledAttributes = (XmlAttribute[]) unhandledAttributeList.ToArray(typeof(XmlAttribute));\r
-                                       unhandledAttributeList = null;\r
-                               }\r
-                               return unhandledAttributes;\r
-                       }\r
-                       set\r
-                       { \r
-                               unhandledAttributes = value; \r
-                               unhandledAttributeList = null;\r
-                       }\r
-               }\r
-       }\r
-}\r
+// Author: Dwivedi, Ajay kumar
+//            Adwiv@Yahoo.com
+
+//
+// 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;
+using System.Collections;
+using System.Xml;
+using System.Xml.Serialization;
+
+namespace System.Xml.Schema
+{
+       /// <summary>
+       /// Summary description for XmlSchemaAnnotated.
+       /// </summary>
+
+       public class XmlSchemaAnnotated : XmlSchemaObject
+       {
+               private XmlSchemaAnnotation annotation;
+               private string id;
+               private XmlAttribute[] unhandledAttributes;
+
+               public XmlSchemaAnnotated()
+               {}
+               
+               [System.Xml.Serialization.XmlAttribute("id", DataType="ID")]
+               public string Id 
+               { 
+                       get{ return  id; } 
+                       set{ id = value; } 
+               }
+               
+               [XmlElement("annotation", Type=typeof(XmlSchemaAnnotation))]
+               public XmlSchemaAnnotation Annotation 
+               { 
+                       get{ return  annotation; } 
+                       set{ annotation = value; } 
+               }
+               
+               [XmlAnyAttribute]
+               public XmlAttribute[] UnhandledAttributes 
+               { 
+                       get
+                       {
+                               if(unhandledAttributeList != null)
+                               {
+                                       unhandledAttributes = (XmlAttribute[]) unhandledAttributeList.ToArray(typeof(XmlAttribute));
+                                       unhandledAttributeList = null;
+                               }
+                               return unhandledAttributes;
+                       }
+                       set
+                       { 
+                               unhandledAttributes = value; 
+                               unhandledAttributeList = null;
+                       }
+               }
+       }
+}