Add this for backwards compatibility
[mono.git] / mcs / class / System / System.CodeDom / CodeTypeParameterCollection.cs
1 //
2 // System.CodeDom CodeTypeParameterCollection class
3 //
4 // Authors:
5 //      Marek Safar (marek.safar@seznam.cz)
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // (C) 2004 Ximian, Inc.
9 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
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
32
33 using System.Runtime.InteropServices;
34
35 namespace System.CodeDom
36 {
37         [Serializable]
38         [ComVisible (true), ClassInterface (ClassInterfaceType.AutoDispatch)]
39         public class CodeTypeParameterCollection: System.Collections.CollectionBase
40         {
41                 public CodeTypeParameterCollection ()
42                 {
43                 }
44
45                 public CodeTypeParameterCollection (CodeTypeParameter[] value)
46                 {
47                         AddRange (value);
48                 }
49
50                 public CodeTypeParameterCollection (CodeTypeParameterCollection value)
51                 {
52                         AddRange (value);
53                 }
54
55                 public int Add (CodeTypeParameter value)
56                 {
57                         return List.Add (value);
58                 }
59
60                 public void Add (string value)
61                 {
62                         List.Add (new CodeTypeParameter (value));
63                 }
64
65                 public void AddRange (CodeTypeParameter[] value)
66                 {
67                         if (value == null) {
68                                 throw new ArgumentNullException ("value");
69                         }
70
71                         for (int i = 0; i < value.Length; i++) {
72                                 Add (value[i]);
73                         }
74                 }
75
76                 public void AddRange (CodeTypeParameterCollection value)
77                 {
78                         if (value == null) {
79                                 throw new ArgumentNullException ("value");
80                         }
81
82                         int count = value.Count;
83                         for (int i = 0; i < count; i++) {
84                                 Add (value[i]);
85                         }
86                 }
87
88                 public bool Contains (CodeTypeParameter value)
89                 {
90                         return List.Contains (value);
91                 }
92                 
93                 public void CopyTo (CodeTypeParameter[] array, int index)
94                 {
95                         List.CopyTo (array, index);
96                 }
97
98                 public int IndexOf (CodeTypeParameter value)
99                 {
100                         return List.IndexOf (value);
101                 }
102
103                 public void Insert (int index, CodeTypeParameter value)
104                 {
105                         List.Insert (index, value);
106                 }
107
108                 public void Remove (CodeTypeParameter value)
109                 {
110                         List.Remove (value);
111                 }
112
113                 public CodeTypeParameter this [int index]
114                 {
115                         get {
116                                 return ((CodeTypeParameter) List [index]);
117                         }
118                         set {
119                                 List[index] = value;
120                         }
121                 }
122         }
123 }
124
125 #endif