2005-11-24 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data.Common / FieldNameLookup.cs
1 //
2 // System.Data.Common.FieldNameLookup.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Collections;
34 using System.Data;
35
36 namespace System.Data.Common {
37 #if NET_2_0
38 // FIXME: Need to clean this up
39         public sealed class FieldNameLookup
40 #else
41         internal sealed class FieldNameLookup : ICollection, IEnumerable
42 #endif
43         {
44                 #region Fields
45
46                 ArrayList list;
47
48                 #endregion
49                 
50                 #region Constructors
51
52                 public FieldNameLookup ()
53                 {
54                         list = new ArrayList ();
55                 }
56
57                 public FieldNameLookup (DataTable schemaTable)
58                         : this ()
59                 {
60                         foreach (DataRow row in schemaTable.Rows)
61                                 list.Add ((string) row["ColumnName"]);
62                 }
63
64                 #endregion
65
66                 #region Properties
67
68                 public int Count {
69                         get { return list.Count; }
70                 }
71
72                 public bool IsFixedSize {
73                         get { return false; }
74                 }
75
76                 public bool IsReadOnly {
77                         get { return false; }
78                 }
79
80                 public bool IsSynchronized {
81                         get { return list.IsSynchronized; }
82                 }
83
84                 public string this [int index] {
85                         get { return (string) list[index]; }
86                         set { list[index] = value; }
87                 }
88
89                 public object SyncRoot {        
90                         get { return list.SyncRoot; }
91                 }
92
93                 #endregion
94
95                 #region Methods
96
97                 public int Add (object value) 
98                 {
99                         return list.Add (value); 
100                 }
101
102                 public void Clear ()
103                 {
104                         list.Clear ();
105                 }
106
107                 public bool Contains (object value)
108                 {
109                         return list.Contains (value);
110                 }
111
112                 public void CopyTo (Array array, int index)
113                 {
114                         list.CopyTo (array, index);
115                 }
116
117 #if ONLY_1_0 || ONLY_1_1
118                 IEnumerator IEnumerable.GetEnumerator ()
119                 {
120                         return list.GetEnumerator (); 
121                 }
122 #endif
123
124                 public int IndexOf (object value)
125                 {
126                         return list.IndexOf (value);
127                 }
128
129                 public void Insert (int index, object value)
130                 {
131                         list.Insert (index, value);
132                 }
133
134                 public void Remove (object value)
135                 { 
136                         list.Remove (value);
137                 }
138
139                 public void RemoveAt (int index) 
140                 {
141                         list.RemoveAt (index);
142                 }
143
144                 #endregion // Methods
145         }
146 }