System.XML: added null arguments validation for targetType and namespaceResolver...
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaAnnotated.cs
index da2684670d62f5d83378cf249a790f1c706dc508..a9f788aa83f8d14fcddf624551725b3f21d2974d 100644 (file)
@@ -1,5 +1,5 @@
-// Author: Dwivedi, Ajay kumar\r
-//            Adwiv@Yahoo.com\r
+// Author: Dwivedi, Ajay kumar
+//            Adwiv@Yahoo.com
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // 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;\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
+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;
+                       }
+               }
+       }
+}