Merge pull request #1473 from esdrubal/sq
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / ServiceDescriptionBaseCollection.cs
index ebc2e7b416a1438477f4b5da48060432c4dbe27f..6406d36eeb39b65897dc41664256457de8808a6b 100644 (file)
@@ -1,11 +1,11 @@
-// \r
-// System.Web.Services.Description.ServiceDescriptionBaseCollection.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
+// 
+// System.Web.Services.Description.ServiceDescriptionBaseCollection.cs
+//
+// Author:
+//   Tim Coleman (tim@timcoleman.com)
+//
+// Copyright (C) Tim Coleman, 2002
+//
 
 //
 // 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.
 //
-\r
-using System.Collections;\r
-using System.Web.Services;\r
-\r
-namespace System.Web.Services.Description {\r
-       public abstract class ServiceDescriptionBaseCollection : CollectionBase {\r
-               \r
-               #region Fields\r
-\r
-               Hashtable table = new Hashtable ();\r
-               object parent;\r
-\r
-               #endregion // Fields\r
-\r
-               #region Constructors\r
-\r
-               internal ServiceDescriptionBaseCollection (object parent)\r
-               {\r
-                       this.parent = parent;\r
-               }\r
-\r
-               #endregion // Constructors\r
-\r
-               #region Properties\r
-\r
-               protected virtual IDictionary Table {\r
-                       get { return table; }\r
-               }\r
-\r
-               #endregion // Properties\r
-\r
-               #region Methods\r
-\r
-               protected virtual string GetKey (object value) \r
-               {\r
-                       return null; \r
-               }\r
-\r
-               protected override void OnClear ()\r
-               {\r
-                       Table.Clear ();\r
-               }\r
-\r
-               protected override void OnInsertComplete (int index, object value)\r
-               {\r
-                       if (GetKey (value) != null)\r
-                               Table [GetKey (value)] = value;\r
-                       SetParent (value, parent);\r
-               }\r
-\r
-               protected override void OnRemove (int index, object value)\r
-               {\r
-                       if (GetKey (value) != null)\r
-                               Table.Remove (GetKey (value));\r
-               }\r
-\r
-               protected override void OnSet (int index, object oldValue, object newValue)\r
-               {\r
-                       if (GetKey (oldValue) != null) \r
-                               Table.Remove (GetKey (oldValue));\r
-                       if (GetKey (newValue) != null)\r
-                               Table [GetKey (newValue)] = newValue;\r
-                       SetParent (newValue, parent);\r
-               }\r
-\r
-               protected virtual void SetParent (object value, object parent)\r
-               {\r
-               }\r
-                       \r
-               #endregion // Methods\r
-       }\r
-}\r
+
+using System.Collections;
+using System.Web.Services;
+
+namespace System.Web.Services.Description {
+       public abstract class ServiceDescriptionBaseCollection : CollectionBase {
+               
+               #region Fields
+
+               Hashtable table = new Hashtable ();
+               object parent;
+
+               #endregion // Fields
+
+               #region Constructors
+
+               internal ServiceDescriptionBaseCollection (object parent)
+               {
+                       this.parent = parent;
+               }
+
+               #endregion // Constructors
+
+               #region Properties
+
+               protected virtual IDictionary Table {
+                       get { return table; }
+               }
+
+               #endregion // Properties
+
+               #region Methods
+
+               protected virtual string GetKey (object value) 
+               {
+                       return null; 
+               }
+
+               protected override void OnClear ()
+               {
+                       Table.Clear ();
+               }
+
+               protected override void OnInsertComplete (int index, object value)
+               {
+                       if (GetKey (value) != null)
+                               Table [GetKey (value)] = value;
+                       SetParent (value, parent);
+               }
+
+               protected override void OnRemove (int index, object value)
+               {
+                       if (GetKey (value) != null)
+                               Table.Remove (GetKey (value));
+               }
+
+               protected override void OnSet (int index, object oldValue, object newValue)
+               {
+                       if (GetKey (oldValue) != null) 
+                               Table.Remove (GetKey (oldValue));
+                       if (GetKey (newValue) != null)
+                               Table [GetKey (newValue)] = newValue;
+                       SetParent (newValue, parent);
+               }
+
+               protected virtual void SetParent (object value, object parent)
+               {
+               }
+                       
+               #endregion // Methods
+       }
+}