New test.
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / SoapTypeAttribute.cs
index 36c6f273eda0e632bdcac7d3e46f4a33f298ab19..f47911028fb4b9c60037cf6cd896b8b1d783f8be 100644 (file)
@@ -1,88 +1,88 @@
-//\r
-// SoapTypeAttribute.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
-\r
-namespace System.Xml.Serialization\r
-{\r
-       /// <summary>\r
-       /// Summary description for SoapTypeAttribute.\r
-       /// </summary>\r
-       [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |\r
-                AttributeTargets.Enum | AttributeTargets.Interface)]\r
-       public class SoapTypeAttribute : Attribute\r
-       {\r
-               private string ns;\r
-               private string typeName;\r
-               private bool includeInSchema = true;\r
-\r
-               public SoapTypeAttribute ()\r
-               {\r
-               }\r
-               public SoapTypeAttribute (string typeName)\r
-               {\r
-                       this.typeName = typeName;\r
-               }\r
-               public SoapTypeAttribute (string typeName, string ns)\r
-               {\r
-                       this.typeName = typeName;\r
-                       this.ns = ns;\r
-               }\r
-               \r
-               public bool IncludeInSchema \r
-               {\r
-                       get { return  includeInSchema; }\r
-                       set { includeInSchema = value; }\r
-               }\r
-\r
-               public string Namespace {\r
-                       get { return ns; }\r
-                       set { ns = value; }\r
-               }\r
-               public string TypeName {\r
-                       get {\r
-                               if (typeName == null) {\r
-                                       return string.Empty;\r
-                               }\r
-                               return typeName;\r
-                       }\r
-                       set { typeName = value; }\r
-               }\r
-               \r
-               internal void AddKeyHash (System.Text.StringBuilder sb)\r
-               {\r
-                       sb.Append ("STA ");\r
-                       KeyHelper.AddField (sb, 1, ns);\r
-                       KeyHelper.AddField (sb, 2, typeName);\r
-                       KeyHelper.AddField (sb, 3, includeInSchema);\r
-                       sb.Append ('|');\r
-               }\r
-       }\r
-}\r
+//
+// SoapTypeAttribute.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;
+
+namespace System.Xml.Serialization
+{
+       /// <summary>
+       /// Summary description for SoapTypeAttribute.
+       /// </summary>
+       [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |
+                AttributeTargets.Enum | AttributeTargets.Interface)]
+       public class SoapTypeAttribute : Attribute
+       {
+               private string ns;
+               private string typeName;
+               private bool includeInSchema = true;
+
+               public SoapTypeAttribute ()
+               {
+               }
+               public SoapTypeAttribute (string typeName)
+               {
+                       this.typeName = typeName;
+               }
+               public SoapTypeAttribute (string typeName, string ns)
+               {
+                       this.typeName = typeName;
+                       this.ns = ns;
+               }
+               
+               public bool IncludeInSchema 
+               {
+                       get { return  includeInSchema; }
+                       set { includeInSchema = value; }
+               }
+
+               public string Namespace {
+                       get { return ns; }
+                       set { ns = value; }
+               }
+               public string TypeName {
+                       get {
+                               if (typeName == null) {
+                                       return string.Empty;
+                               }
+                               return typeName;
+                       }
+                       set { typeName = value; }
+               }
+               
+               internal void AddKeyHash (System.Text.StringBuilder sb)
+               {
+                       sb.Append ("STA ");
+                       KeyHelper.AddField (sb, 1, ns);
+                       KeyHelper.AddField (sb, 2, typeName);
+                       KeyHelper.AddField (sb, 3, includeInSchema);
+                       sb.Append ('|');
+               }
+       }
+}