* Makefile: Don't build make-map.exe.
[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         internal sealed class FieldNameLookup : ICollection, IEnumerable
38         {
39                 #region Fields
40
41                 ArrayList list;
42
43                 #endregion
44                 
45                 #region Constructors
46
47                 public FieldNameLookup ()
48                 {
49                         list = new ArrayList ();
50                 }
51
52                 public FieldNameLookup (DataTable schemaTable)
53                         : this ()
54                 {
55                         foreach (DataRow row in schemaTable.Rows)
56                                 list.Add ((string) row["ColumnName"]);
57                 }
58
59                 #endregion
60
61                 #region Properties
62
63                 public int Count {
64                         get { return list.Count; }
65                 }
66
67                 public bool IsFixedSize {
68                         get { return false; }
69                 }
70
71                 public bool IsReadOnly {
72                         get { return false; }
73                 }
74
75                 public bool IsSynchronized {
76                         get { return list.IsSynchronized; }
77                 }
78
79                 public string this [int index] {
80                         get { return (string) list[index]; }
81                         set { list[index] = value; }
82                 }
83
84                 public object SyncRoot {        
85                         get { return list.SyncRoot; }
86                 }
87
88                 #endregion
89
90                 #region Methods
91
92                 public int Add (object value) 
93                 {
94                         return list.Add (value); 
95                 }
96
97                 public void Clear ()
98                 {
99                         list.Clear ();
100                 }
101
102                 public bool Contains (object value)
103                 {
104                         return list.Contains (value);
105                 }
106
107                 public void CopyTo (Array array, int index)
108                 {
109                         list.CopyTo (array, index);
110                 }
111
112                 IEnumerator IEnumerable.GetEnumerator ()
113                 {
114                         return list.GetEnumerator (); 
115                 }
116
117                 public int IndexOf (object value)
118                 {
119                         return list.IndexOf (value);
120                 }
121
122                 public void Insert (int index, object value)
123                 {
124                         list.Insert (index, value);
125                 }
126
127                 public void Remove (object value)
128                 { 
129                         list.Remove (value);
130                 }
131
132                 public void RemoveAt (int index) 
133                 {
134                         list.RemoveAt (index);
135                 }
136
137                 #endregion // Methods
138         }
139 }