2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System / System.Diagnostics / CounterCreationDataCollection.cs
1 //
2 // System.Diagnostics.CounterCreationDataCollection.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // (C) 2002
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 using System;
32 using System.Collections;
33 using System.Diagnostics;
34 using System.Globalization;
35
36 namespace System.Diagnostics {
37
38         [Serializable]
39         public class CounterCreationDataCollection : CollectionBase {
40
41                 public CounterCreationDataCollection ()
42                 {
43                 }
44
45                 public CounterCreationDataCollection (
46                         CounterCreationData[] value)
47                 {
48                         AddRange (value);
49                 }
50
51                 public CounterCreationDataCollection (
52                         CounterCreationDataCollection value)
53                 {
54                         AddRange (value);
55                 }
56
57                 public CounterCreationData this [int index] {
58                         get {return (CounterCreationData) InnerList[index];}
59                         set {InnerList[index] = value;}
60                 }
61
62                 public int Add (CounterCreationData value)
63                 {
64                         return InnerList.Add (value);
65                 }
66
67                 public void AddRange (CounterCreationData[] value)
68                 {
69                         foreach (CounterCreationData v in value)
70                         {
71                                 Add (v);
72                         }
73                 }
74
75                 public void AddRange (CounterCreationDataCollection value)
76                 {
77                         foreach (CounterCreationData v in value)
78                         {
79                                 Add (v);
80                         }
81                 }
82
83                 public bool Contains (CounterCreationData value)
84                 {
85                         return InnerList.Contains (value);
86                 }
87
88                 public void CopyTo (CounterCreationData[] array, int index)
89                 {
90                         InnerList.CopyTo (array, index);
91                 }
92
93                 public int IndexOf (CounterCreationData value)
94                 {
95                         return InnerList.IndexOf (value);
96                 }
97
98                 public void Insert (int index, CounterCreationData value)
99                 {
100                         InnerList.Insert (index, value);
101                 }
102
103                 protected override void OnInsert (int index, object value)
104                 {
105                         if (!(value is CounterCreationData))
106                                 throw new NotSupportedException (Locale.GetText(
107                                         "You can only insert " + 
108                                         "CounterCreationData objects into " +
109                                         "the collection"));
110                 }
111
112                 public virtual void Remove (CounterCreationData value)
113                 {
114                         InnerList.Remove (value);
115                 }
116         }
117 }
118