2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Design / System.Windows.Forms.Design.Behavior / BehaviorServiceAdornerCollection.cs
blob9590c193a1b1a8832623d178dc5cdf10be3f1756
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 //
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.
31 #if NET_2_0
33 using System.Collections;
35 namespace System.Windows.Forms.Design.Behavior
37 public sealed class BehaviorServiceAdornerCollection : CollectionBase
39 int state;
41 public BehaviorServiceAdornerCollection (BehaviorService behaviorService)
42 : this (behaviorService.Adorners)
46 public BehaviorServiceAdornerCollection (Adorner [] value)
48 if (value == null)
49 throw new ArgumentNullException ("value");
50 InnerList.AddRange (value);
53 public BehaviorServiceAdornerCollection (BehaviorServiceAdornerCollection value)
55 if (value == null)
56 throw new ArgumentNullException ("value");
57 InnerList.AddRange (value);
60 internal int State {
61 get { return state; }
64 public Adorner this [int index] {
65 get { return (Adorner) InnerList [index]; }
66 set {
67 if (value == null)
68 throw new ArgumentNullException ("value");
69 InnerList [index] = value;
73 public int Add (Adorner value)
75 state++;
76 return InnerList.Add (value);
79 public void AddRange (Adorner [] value)
81 state++;
82 if (value == null)
83 throw new ArgumentNullException ("value");
84 InnerList.AddRange (value);
87 public void AddRange (BehaviorServiceAdornerCollection value)
89 state++;
90 if (value == null)
91 throw new ArgumentNullException ("value");
92 InnerList.AddRange (value);
95 public bool Contains (Adorner value)
97 return InnerList.Contains (value);
100 public void CopyTo (Adorner [] array, int index)
102 InnerList.CopyTo (array, index);
105 public int IndexOf (Adorner value)
107 return InnerList.IndexOf (value);
110 public BehaviorServiceAdornerCollectionEnumerator GetEnumerator ()
112 return new BehaviorServiceAdornerCollectionEnumerator (this);
115 public void Insert (int index, Adorner value)
117 state++;
118 InnerList.Insert (index, value);
121 public void Remove (Adorner value)
123 state++;
124 InnerList.Remove (value);
129 #endif