Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2002-01-05 16:23:03 +0300
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2002-01-05 16:23:03 +0300
commitd65de221e9798da9c60a7854445cb85436dfea5a (patch)
tree0e14ac368c76bdf483acd04c80ad728704590787 /mcs/class/System/System.Collections.Specialized
parent26122b066175a69bb5694d966be55b0be402c334 (diff)
2002-01-05 Ravi Pratap <ravi@ximian.com>
* BitVector32.cs, ListDictionary.cs : MonoTODO everywhere! * NameObjectCollectionBase.cs, NameValueCollection.cs : Ditto. svn path=/trunk/mcs/; revision=1859
Diffstat (limited to 'mcs/class/System/System.Collections.Specialized')
-rw-r--r--mcs/class/System/System.Collections.Specialized/BitVector32.cs1
-rwxr-xr-xmcs/class/System/System.Collections.Specialized/ChangeLog6
-rw-r--r--mcs/class/System/System.Collections.Specialized/ListDictionary.cs8
-rw-r--r--mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs5
-rw-r--r--mcs/class/System/System.Collections.Specialized/NameValueCollection.cs4
5 files changed, 20 insertions, 4 deletions
diff --git a/mcs/class/System/System.Collections.Specialized/BitVector32.cs b/mcs/class/System/System.Collections.Specialized/BitVector32.cs
index e04a44d7234..e176a220f8c 100644
--- a/mcs/class/System/System.Collections.Specialized/BitVector32.cs
+++ b/mcs/class/System/System.Collections.Specialized/BitVector32.cs
@@ -16,6 +16,7 @@ namespace System.Collections.Specialized {
public short maxval;
}
+ [MonoTODO]
public static Section CreateSection (short maxval)
{
Section s = new Section();
diff --git a/mcs/class/System/System.Collections.Specialized/ChangeLog b/mcs/class/System/System.Collections.Specialized/ChangeLog
index cf3165e430d..39304c0dcf1 100755
--- a/mcs/class/System/System.Collections.Specialized/ChangeLog
+++ b/mcs/class/System/System.Collections.Specialized/ChangeLog
@@ -1,3 +1,9 @@
+2002-01-05 Ravi Pratap <ravi@ximian.com>
+
+ * BitVector32.cs, ListDictionary.cs : MonoTODO everywhere!
+
+ * NameObjectCollectionBase.cs, NameValueCollection.cs : Ditto.
+
2001-08-24 Nick Drochak <ndrochak@gol.com>
* NameObjectCollectionBase.cs: Add stub implementation
* common.src: Add NameObjectCollectionBase to the build
diff --git a/mcs/class/System/System.Collections.Specialized/ListDictionary.cs b/mcs/class/System/System.Collections.Specialized/ListDictionary.cs
index 47f52ea11f8..bb305f26e64 100644
--- a/mcs/class/System/System.Collections.Specialized/ListDictionary.cs
+++ b/mcs/class/System/System.Collections.Specialized/ListDictionary.cs
@@ -120,7 +120,8 @@ namespace System.Collections.Specialized
return this;
}
}
-
+
+ [MonoTODO]
public void CopyTo(Array array, int index)
{
// FIXME
@@ -354,7 +355,8 @@ namespace System.Collections.Specialized
return dict.SyncRoot;
}
}
-
+
+ [MonoTODO]
public void CopyTo(Array array, int index)
{
// FIXME
@@ -429,4 +431,4 @@ namespace System.Collections.Specialized
}
}
}
-} \ No newline at end of file
+}
diff --git a/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs b/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs
index a8784cb66e7..4804657860b 100644
--- a/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs
+++ b/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs
@@ -143,6 +143,7 @@ namespace System.Collections.Specialized
/// <summary>
/// SDK: Initializes a new instance of the NameObjectCollectionBase class that is empty.
/// </summary>
+ [MonoTODO]
protected NameObjectCollectionBase():base()
{
m_readonly = false;
@@ -370,6 +371,7 @@ namespace System.Collections.Specialized
return allValues;
// throw new Exception("Not implemented yet");
}
+ [MonoTODO]
protected object[] BaseGetAllValues( Type type )
{
if (type == null)
@@ -397,6 +399,7 @@ namespace System.Collections.Specialized
///
/// </summary>
/// <param name="name"></param>
+ [MonoTODO]
protected void BaseRemove( string name )
{
int cnt = 0;
@@ -439,6 +442,7 @@ namespace System.Collections.Specialized
/// It's ok only then the key is uniquely assosiated with the value
/// To fix it a comparsion of objects stored under the same key in the hashtable and in the arraylist should be added
/// </LAME>>
+ [MonoTODO]
protected void BaseRemoveAt( int index )
{
if (this.IsReadOnly)
@@ -483,6 +487,7 @@ namespace System.Collections.Specialized
//throw new Exception("Not implemented yet");
}
+ [MonoTODO]
private _Item FindFirstMatchedItem(string name)
{
if (name!=null)
diff --git a/mcs/class/System/System.Collections.Specialized/NameValueCollection.cs b/mcs/class/System/System.Collections.Specialized/NameValueCollection.cs
index dabe7829031..23c8a5b62f8 100644
--- a/mcs/class/System/System.Collections.Specialized/NameValueCollection.cs
+++ b/mcs/class/System/System.Collections.Specialized/NameValueCollection.cs
@@ -207,7 +207,8 @@ namespace System.Collections.Specialized{
/// <summary> SDK: Copies the entire NameValueCollection to a compatible one-dimensional Array,
/// starting at the specified index of the target array.</summary>
-
+
+ [MonoTODO]
override public void CopyTo( Array dest, int index )
{
if (dest==null)
@@ -258,6 +259,7 @@ namespace System.Collections.Specialized{
}
/// <summary></summary>
+ [MonoTODO]
private static string AsSingleString(ArrayList values)
{
const char separator = ',';