Use __cdecl rather than __stdcall for icalls on Windows 32-bit
[mono.git] / mcs / class / System.Design / System.Windows.Forms.Design.Behavior / BehaviorServiceAdornerCollection.cs
1 //
2 // System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection
3 //
4 // Author:
5 //      Atsushi Enomoto (atsushi@ximian.com)
6 //
7 // Copyright (C) 2007 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
32 using System.Collections;
33
34 namespace System.Windows.Forms.Design.Behavior
35 {
36         public sealed class BehaviorServiceAdornerCollection : CollectionBase
37         {
38                 int state;
39
40                 public BehaviorServiceAdornerCollection (BehaviorService behaviorService)
41                         : this (behaviorService.Adorners)
42                 {
43                 }
44
45                 public BehaviorServiceAdornerCollection (Adorner [] value)
46                 {
47                         if (value == null)
48                                 throw new ArgumentNullException ("value");
49                         InnerList.AddRange (value);
50                 }
51
52                 public BehaviorServiceAdornerCollection (BehaviorServiceAdornerCollection value)
53                 {
54                         if (value == null)
55                                 throw new ArgumentNullException ("value");
56                         InnerList.AddRange (value);
57                 }
58
59                 internal int State {
60                         get { return state; }
61                 }
62
63                 public Adorner this [int index] {
64                         get { return (Adorner) InnerList [index]; }
65                         set {
66                                 if (value == null)
67                                         throw new ArgumentNullException ("value");
68                                 InnerList [index] = value;
69                         }
70                 }
71
72                 public int Add (Adorner value)
73                 {
74                         state++;
75                         return InnerList.Add (value);
76                 }
77
78                 public void AddRange (Adorner [] value)
79                 {
80                         state++;
81                         if (value == null)
82                                 throw new ArgumentNullException ("value");
83                         InnerList.AddRange (value);
84                 }
85
86                 public void AddRange (BehaviorServiceAdornerCollection value)
87                 {
88                         state++;
89                         if (value == null)
90                                 throw new ArgumentNullException ("value");
91                         InnerList.AddRange (value);
92                 }
93
94                 public bool Contains (Adorner value)
95                 {
96                         return InnerList.Contains (value);
97                 }
98
99                 public void CopyTo (Adorner [] array, int index)
100                 {
101                         InnerList.CopyTo (array, index);
102                 }
103
104                 public int IndexOf (Adorner value)
105                 {
106                         return InnerList.IndexOf (value);
107                 }
108
109                 public BehaviorServiceAdornerCollectionEnumerator GetEnumerator ()
110                 {
111                         return new BehaviorServiceAdornerCollectionEnumerator (this);
112                 }
113
114                 public void Insert (int index, Adorner value)
115                 {
116                         state++;
117                         InnerList.Insert (index, value);
118                 }
119
120                 public void Remove (Adorner value)
121                 {
122                         state++;
123                         InnerList.Remove (value);
124                 }
125         }
126 }
127