Procházet zdrojové kódy

2001-07-13 Miguel de Icaza <[email protected]>

	* All files: Renamespace things to System.

svn path=/trunk/mcs/; revision=121
Miguel de Icaza před 24 roky
rodič
revize
c99279c286

+ 14 - 15
mcs/class/corlib/System.Collections/ArrayList.cs

@@ -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 ([email protected])
@@ -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 () {

+ 4 - 0
mcs/class/corlib/System.Collections/ChangeLog

@@ -1,3 +1,7 @@
+2001-07-13  Miguel de Icaza  <[email protected]>
+
+	* All files: Renamespace things to System.
+
 2001-07-05  Vladimir Vukicevic  <[email protected]>
 
 	* ArrayList.cs: initial checkin and implementation

+ 2 - 3
mcs/class/corlib/System.Collections/ICollection.cs

@@ -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 ([email protected])
@@ -9,9 +9,8 @@
 //
 
 using System;
-using MCS.System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
 	public interface ICollection : IEnumerable {
 		int Count { get; }

+ 3 - 3
mcs/class/corlib/System.Collections/IComparer.cs

@@ -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 ([email protected])
@@ -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);

+ 3 - 3
mcs/class/corlib/System.Collections/IDictionary.cs

@@ -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 ([email protected])
@@ -9,9 +9,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
 	public interface IDictionary {
 		// properties

+ 3 - 3
mcs/class/corlib/System.Collections/IDictionaryEnumerator.cs

@@ -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 ([email protected])
@@ -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; }

+ 3 - 3
mcs/class/corlib/System.Collections/IEnumerable.cs

@@ -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 ([email protected])
@@ -9,9 +9,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
 	public interface IEnumerable {
 		IEnumerator GetEnumerator();

+ 3 - 3
mcs/class/corlib/System.Collections/IEnumerator.cs

@@ -1,5 +1,5 @@
 //
-// MCS.System.Collections.IEnumerator
+// System.Collections.IEnumerator
 //
 // Author:
 //    Vladimir Vukicevic ([email protected])
@@ -8,9 +8,9 @@
 //
 
 using System;
-using MCS.System;
+using System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
     public interface IEnumerator {
 	object Current { get; }

+ 3 - 3
mcs/class/corlib/System.Collections/IHashCodeProvider.cs

@@ -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 ([email protected])
@@ -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);

+ 2 - 3
mcs/class/corlib/System.Collections/IList.cs

@@ -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 ([email protected])
@@ -9,9 +9,8 @@
 //
 
 using System;
-using MCS.System;
 
-namespace MCS.System.Collections {
+namespace System.Collections {
 
 	public interface IList : ICollection, IEnumerable {
 		// properties