2005-10-23 Sebastien Pouliot <sebastien@ximian.com>
[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                                 return;
69
70                         foreach (object o in value)
71                                 List.Add (o);
72                 }
73
74                 public void AddRange (CodeTypeParameterCollection value)
75                 {
76                         if (value == null)
77                                 return;
78
79                         foreach (object o in value)
80                                 List.Add (o);
81                 }
82
83                 public bool Contains (CodeTypeParameter value)
84                 {
85                         return List.Contains (value);
86                 }
87                 
88                 public void CopyTo (CodeTypeParameter[] array, int index)
89                 {
90                         List.CopyTo (array, index);
91                 }
92
93                 public int IndexOf (CodeTypeParameter value)
94                 {
95                         return List.IndexOf (value);
96                 }
97
98                 public void Insert (int index, CodeTypeParameter value)
99                 {
100                         List.Insert (index, value);
101                 }
102
103                 public void Remove (CodeTypeParameter value)
104                 {
105                         int index = IndexOf (value);
106                         if (index < 0) {
107                                 string msg = Locale.GetText ("The specified object is not found in the collection");
108                                 throw new ArgumentException (msg, "value");
109                         }
110                         RemoveAt (index);
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