2001-07-13 Miguel de Icaza <miguel@ximian.com>
authorMiguel de Icaza <miguel@gnome.org>
Fri, 13 Jul 2001 05:04:57 +0000 (05:04 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Fri, 13 Jul 2001 05:04:57 +0000 (05:04 -0000)
* All files: Renamespace things to System.

svn path=/trunk/mcs/; revision=121

mcs/class/corlib/System.Collections/ArrayList.cs
mcs/class/corlib/System.Collections/ChangeLog
mcs/class/corlib/System.Collections/ICollection.cs
mcs/class/corlib/System.Collections/IComparer.cs
mcs/class/corlib/System.Collections/IDictionary.cs
mcs/class/corlib/System.Collections/IDictionaryEnumerator.cs
mcs/class/corlib/System.Collections/IEnumerable.cs
mcs/class/corlib/System.Collections/IEnumerator.cs
mcs/class/corlib/System.Collections/IHashCodeProvider.cs
mcs/class/corlib/System.Collections/IList.cs

index 87d6db76c426e9d6b09c0fcebd6494947c4b7378..26243e5c3ef775785a517f496036a6171e582950 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.ArrayList
+// System.Collections.ArrayList
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,8 @@
 //
 
 using System;
-using MCS.System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public class ArrayList : IList, ICollection, IEnumerable, ICloneable {
                // constructors
@@ -40,27 +39,27 @@ namespace MCS.System.Collections {
                }
 
                public static ArrayList ReadOnly (ArrayList list) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.ReadOnly");
+                       throw new NotImplementedException ("System.Collections.ArrayList.ReadOnly");
                }
 
                public static ArrayList ReadOnly (IList list) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.ReadOnly");
+                       throw new NotImplementedException ("System.Collections.ArrayList.ReadOnly");
                }
 
                public static ArrayList Synchronized (ArrayList list) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.Synchronized");
+                       throw new NotImplementedException ("System.Collections.ArrayList.Synchronized");
                }
 
                public static ArrayList Synchronized (IList list) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.Synchronized");
+                       throw new NotImplementedException ("System.Collections.ArrayList.Synchronized");
                }
 
                public static ArrayList FixedSize (ArrayList list) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.FixedSize");
+                       throw new NotImplementedException ("System.Collections.ArrayList.FixedSize");
                }
 
                public static ArrayList FixedSize (IList list) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.FixedSize");
+                       throw new NotImplementedException ("System.Collections.ArrayList.FixedSize");
                }
 
                public static ArrayList Repeat (object value, int count) {
@@ -74,7 +73,7 @@ namespace MCS.System.Collections {
                }
 
                public static ArrayList Adapter (IList list) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.Adapter");
+                       throw new NotImplementedException ("System.Collections.ArrayList.Adapter");
                }
 
                // properties
@@ -221,7 +220,7 @@ namespace MCS.System.Collections {
 
                public virtual object SyncRoot {
                        get {
-                               throw new NotImplementedException ("MCS.System.Collections.ArrayList.SyncRoot.get");
+                               throw new NotImplementedException ("System.Collections.ArrayList.SyncRoot.get");
                        }
                }
 
@@ -242,20 +241,20 @@ namespace MCS.System.Collections {
                }
 
                public virtual void AddRange (ICollection c) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.AddRange");
+                       throw new NotImplementedException ("System.Collections.ArrayList.AddRange");
                }
 
                public virtual int BinarySearch (object value) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.BinarySearch");
+                       throw new NotImplementedException ("System.Collections.ArrayList.BinarySearch");
                }
 
                public virtual int BinarySearch (object value, IComparer comparer) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.BinarySearch");
+                       throw new NotImplementedException ("System.Collections.ArrayList.BinarySearch");
                }
 
                public virtual int BinarySearch (int index, int count,
                                                 object value, IComparer comparer) {
-                       throw new NotImplementedException ("MCS.System.Collections.ArrayList.BinarySearch");
+                       throw new NotImplementedException ("System.Collections.ArrayList.BinarySearch");
                }
 
                public virtual void Clear () {
index c87785b930c221a9342d523cb3e7e61d7a83a053..f5f8d484ec5772f4420f6f7bb0b09614cdc0b653 100644 (file)
@@ -1,3 +1,7 @@
+2001-07-13  Miguel de Icaza  <miguel@ximian.com>
+
+       * All files: Renamespace things to System.
+
 2001-07-05  Vladimir Vukicevic  <vladimir@ximian.com>
 
        * ArrayList.cs: initial checkin and implementation
index 96b5978e4aec2b1a51d82b09f00558ab6fdb9c79..2189931cae8fa427d49aab81ed400ea720379793 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.ICollection
+// System.Collections.ICollection
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,8 @@
 //
 
 using System;
-using MCS.System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public interface ICollection : IEnumerable {
                int Count { get; }
index e2fa3afdf4eb0f77e61df4808b6d19efce5d109e..babc5d9138e479fac1528b33fe50f802a8c73d0e 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.IComparer
+// System.Collections.IComparer
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public interface IComparer {
                int Compare (object x, object y);
index 329b911cf6ea39d818d2b5e46960abd622c0c481..a9daaa28094fdfe476cea78f9edddbaa5169c943 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.IDictionary
+// System.Collections.IDictionary
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public interface IDictionary {
                // properties
index 6a198adc169f7560898e13e7d158a415492ab3ca..4e12afa4ab0129ce57e05b0e03cfc68f4c40c170 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.IDictionaryEnumerator
+// System.Collections.IDictionaryEnumerator
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public interface IDictionaryEnumerator : IEnumerator {
                DictionaryEntry Entry { get; }
index cca64bb09e12d700e9d8e0f48ed943e4acbbe84c..f084275e613d4aabd61a7b12f885f70f92c3367c 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.IEnumerable
+// System.Collections.IEnumerable
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public interface IEnumerable {
                IEnumerator GetEnumerator();
index 9023922c11a39a1f38079ec0a3d0d8f3583a5e6a..096a598a7184503260562caae1f11ff36df07a3d 100644 (file)
@@ -1,5 +1,5 @@
 //
-// MCS.System.Collections.IEnumerator
+// System.Collections.IEnumerator
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -8,9 +8,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
     public interface IEnumerator {
        object Current { get; }
index f75cf3f3d1f08201bb8a38b67caa4f8c7a7fd022..15662e52e81454a5c6f0b25e3c868d617759e764 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.IDictionary
+// System.Collections.IDictionary
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public interface IHashCodeProvider {
                int GetHashCode (object obj);
index 4e42dc2223ef6a43b749dcb878f3c81d14e955a9..e039a8358c32039ba9d2e44f5b89f4399715e330 100644 (file)
@@ -1,6 +1,6 @@
 // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 //
-// MCS.System.Collections.IList
+// System.Collections.IList
 //
 // Author:
 //    Vladimir Vukicevic (vladimir@pobox.com)
@@ -9,9 +9,8 @@
 //
 
 using System;
-using MCS.System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
        public interface IList : ICollection, IEnumerable {
                // properties