2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Data / System.Data.Configuration.jvm / ObjectNameResolversCollection.cs
blobdfdea0423cec174df5af0cf4dd5be81905afd8f6
1 //
2 // System.Data.Configuration.ObjectNameResolversCollection.cs
3 //
4 // Authors:
5 // Konstantin Triger <kostat@mainsoft.com>
6 //
7 // (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.Collections;
32 using System.Configuration;
33 using System.Xml;
34 using System.Text.RegularExpressions;
36 namespace System.Data.Configuration {
37 sealed class ObjectNameResolversCollection : IEnumerable, ICollection {
39 ArrayList _resolvers;
41 #region ctors
43 internal ObjectNameResolversCollection(ObjectNameResolversCollection parent) {
44 _resolvers = new ArrayList();
46 if (parent != null)
47 _resolvers.AddRange(parent);
50 #endregion
52 #region methods
54 internal void Add(ObjectNameResolver value) {
55 _resolvers.Add(value);
58 internal void Sort() {
59 _resolvers.Sort();
62 #endregion
64 #region props
66 internal ObjectNameResolver this[int index] {
67 get {
68 return (ObjectNameResolver)_resolvers[index];
72 #endregion
74 #region IEnumerable Members
76 public IEnumerator GetEnumerator() {
77 // TODO: Add ObjectNameResolversCollection.GetEnumerator implementation
78 return _resolvers.GetEnumerator();
81 #endregion
83 #region ICollection Members
85 public bool IsSynchronized {
86 get {
87 // TODO: Add ObjectNameResolversCollection.IsSynchronized getter implementation
88 return _resolvers.IsSynchronized;
92 public int Count {
93 get {
94 // TODO: Add ObjectNameResolversCollection.Count getter implementation
95 return _resolvers.Count;
99 public void CopyTo(Array array, int index) {
100 // TODO: Add ObjectNameResolversCollection.CopyTo implementation
101 _resolvers.CopyTo(array, index);
104 public object SyncRoot {
105 get {
106 // TODO: Add ObjectNameResolversCollection.SyncRoot getter implementation
107 return _resolvers.SyncRoot;
111 #endregion