2008-06-03 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.Serialization.Configuration / SchemaImporterExtensionElementCollection.cs
1 //
2 // SchemaImporterExtensionElementCollection.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2006 Novell, Inc.
8 //
9
10 //
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.
29 //
30
31 #if NET_2_0 && CONFIGURATION_DEP
32 using System;
33 using System.Collections;
34 using System.Configuration;
35 using System.Globalization;
36 using System.Xml;
37 using System.Text;
38
39 namespace System.Xml.Serialization.Configuration
40 {
41         [ConfigurationCollection (typeof (SchemaImporterExtensionElement), CollectionType = ConfigurationElementCollectionType.AddRemoveClearMap)]
42         public sealed class SchemaImporterExtensionElementCollection : ConfigurationElementCollection
43         {
44                 public SchemaImporterExtensionElement this [int index] {
45                         get {
46                                 int i = 0;
47                                 if (index >= this.Count || index < 0)
48                                         throw new ArgumentOutOfRangeException ("index is less than 0 or greater than the count of the collection.");
49                                 foreach (SchemaImporterExtensionElement e in this)
50                                         if (i++ == index)
51                                                 return e;
52                                 return null; // should not happen
53                         }
54                         set {
55                                 if (index >= this.Count || index < 0)
56                                         throw new ArgumentOutOfRangeException ("index is less than 0 or greater than the count of the collection.");
57                                 RemoveAt (index);
58                                 BaseAdd (index, value);
59                         }
60                 }
61                 public new SchemaImporterExtensionElement this [string name] {
62                         get {
63                                 foreach (SchemaImporterExtensionElement e in this)
64                                         if (e.Name == name)
65                                                 return e;
66                                 return null;
67                         }
68                         set {
69                                 Remove (name);
70                                 Add (value);
71                         }
72                 }
73
74                 protected override ConfigurationElement CreateNewElement ()
75                 {
76                         return new SchemaImporterExtensionElement ();
77                 }
78
79                 protected override object GetElementKey (ConfigurationElement element)
80                 {
81                         return ((SchemaImporterExtensionElement) element).Name;
82                 }
83
84                 public void Add (SchemaImporterExtensionElement element)
85                 {
86                         BaseAdd (element);
87                 }
88
89                 public void Clear ()
90                 {
91                         BaseClear ();
92                 }
93
94                 public int IndexOf (SchemaImporterExtensionElement element)
95                 {
96                         int i = 0;
97                         foreach (SchemaImporterExtensionElement e in this) {
98                                 if (element.Equals (e))
99                                         return i;
100                                 i++;
101                         }
102                         return -1;
103                 }
104
105                 public void Remove (string name)
106                 {
107                         foreach (SchemaImporterExtensionElement el in this)
108                                 if (name == el.Name) {
109                                         BaseRemove (el);
110                                         break;
111                                 }
112                 }
113
114                 public void Remove (SchemaImporterExtensionElement element)
115                 {
116                         foreach (SchemaImporterExtensionElement el in this)
117                                 if (element.Name == el.Name) {
118                                         BaseRemove (el);
119                                         break;
120                                 }
121                 }
122
123                 public void RemoveAt (int i)
124                 {
125                         BaseRemoveAt (i);
126                 }
127         }
128 }
129
130 #endif