[System] Process.WaitForExit now triggers event Exited.
[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 using System.Runtime.InteropServices;
32
33 namespace System.CodeDom
34 {
35         [Serializable]
36         [ComVisible (true), ClassInterface (ClassInterfaceType.AutoDispatch)]
37         public class CodeTypeParameterCollection: System.Collections.CollectionBase
38         {
39                 public CodeTypeParameterCollection ()
40                 {
41                 }
42
43                 public CodeTypeParameterCollection (CodeTypeParameter[] value)
44                 {
45                         AddRange (value);
46                 }
47
48                 public CodeTypeParameterCollection (CodeTypeParameterCollection value)
49                 {
50                         AddRange (value);
51                 }
52
53                 public int Add (CodeTypeParameter value)
54                 {
55                         return List.Add (value);
56                 }
57
58                 public void Add (string value)
59                 {
60                         List.Add (new CodeTypeParameter (value));
61                 }
62
63                 public void AddRange (CodeTypeParameter[] value)
64                 {
65                         if (value == null) {
66                                 throw new ArgumentNullException ("value");
67                         }
68
69                         for (int i = 0; i < value.Length; i++) {
70                                 Add (value[i]);
71                         }
72                 }
73
74                 public void AddRange (CodeTypeParameterCollection value)
75                 {
76                         if (value == null) {
77                                 throw new ArgumentNullException ("value");
78                         }
79
80                         int count = value.Count;
81                         for (int i = 0; i < count; i++) {
82                                 Add (value[i]);
83                         }
84                 }
85
86                 public bool Contains (CodeTypeParameter value)
87                 {
88                         return List.Contains (value);
89                 }
90                 
91                 public void CopyTo (CodeTypeParameter[] array, int index)
92                 {
93                         List.CopyTo (array, index);
94                 }
95
96                 public int IndexOf (CodeTypeParameter value)
97                 {
98                         return List.IndexOf (value);
99                 }
100
101                 public void Insert (int index, CodeTypeParameter value)
102                 {
103                         List.Insert (index, value);
104                 }
105
106                 public void Remove (CodeTypeParameter value)
107                 {
108                         List.Remove (value);
109                 }
110
111                 public CodeTypeParameter this [int index]
112                 {
113                         get {
114                                 return ((CodeTypeParameter) List [index]);
115                         }
116                         set {
117                                 List[index] = value;
118                         }
119                 }
120         }
121 }
122