2008-12-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaExternal.cs
index c9d68e92ca1f098f0e94a24d1c0775942d61180d..b471eec4347b6b328018fd592e419fd8c586a05d 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.Xml;\r
-using System.Xml.Serialization;\r
-using System.Collections;\r
-namespace System.Xml.Schema\r
-{\r
-       /// <summary>\r
-       /// Summary description for XmlSchemaExternal.\r
-       /// </summary>\r
-       public abstract class XmlSchemaExternal : XmlSchemaObject\r
-       {\r
-               private string id;\r
-               private XmlSchema schema;\r
-               private string location;\r
-               private XmlAttribute[] unhandledAttributes;\r
-\r
-               protected XmlSchemaExternal()\r
-               {}\r
-               \r
-               [System.Xml.Serialization.XmlAttribute("schemaLocation", DataType="anyURI")]\r
-               public string SchemaLocation \r
-               {\r
-                       get{ return  location; } \r
-                       set{ location = value; }\r
-               }\r
-\r
-               [XmlIgnore]\r
-               public XmlSchema Schema \r
-               {\r
-                       get{ return  schema; }\r
-                       set{ schema = value; }\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
-               [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.Xml;
+using System.Xml.Serialization;
+using System.Collections;
+namespace System.Xml.Schema
+{
+       /// <summary>
+       /// Summary description for XmlSchemaExternal.
+       /// </summary>
+       public abstract class XmlSchemaExternal : XmlSchemaObject
+       {
+               private string id;
+               private XmlSchema schema;
+               private string location;
+               private XmlAttribute[] unhandledAttributes;
+
+               protected XmlSchemaExternal()
+               {}
+               
+               [System.Xml.Serialization.XmlAttribute("schemaLocation", DataType="anyURI")]
+               public string SchemaLocation 
+               {
+                       get{ return  location; } 
+                       set{ location = value; }
+               }
+
+               [XmlIgnore]
+               public XmlSchema Schema 
+               {
+                       get{ return  schema; }
+                       set{ schema = value; }
+               }
+
+               [System.Xml.Serialization.XmlAttribute("id", DataType="ID")]
+               public string Id 
+               {
+                       get{ return  id; }
+                       set{ id = value; }
+               }
+
+               [XmlAnyAttribute]
+               public XmlAttribute[] UnhandledAttributes 
+               {
+                       get
+                       {
+                               if(unhandledAttributeList != null)
+                               {
+                                       unhandledAttributes = (XmlAttribute[]) unhandledAttributeList.ToArray(typeof(XmlAttribute));
+                                       unhandledAttributeList = null;
+                               }
+                               return unhandledAttributes;
+                       }
+                       set
+                       { 
+                               unhandledAttributes = value; 
+                               unhandledAttributeList = null;
+                       }
+               }
+       }
+}