2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Design / System.Web.UI.Design / DesignerRegionCollection.cs
blobba7284e4cb835d8b557676d89bd1e2ef05af53e4
1 //
2 // DesignerRegionCollection.cs
3 //
4 // Author:
5 // Marek Habersack <mhabersack@novell.com>
6 //
7 // (C) 2007 Novell, Inc.
8 //
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 #if NET_2_0
31 using System;
32 using System.Collections;
34 namespace System.Web.UI.Design
36 public class DesignerRegionCollection : IList, ICollection, IEnumerable
38 [MonoNotSupported ("")]
39 public DesignerRegionCollection ()
41 throw new NotImplementedException ();
44 [MonoNotSupported ("")]
45 public DesignerRegionCollection (ControlDesigner owner)
47 throw new NotImplementedException ();
50 [MonoNotSupported ("")]
51 public int Add (DesignerRegion region)
53 throw new NotImplementedException ();
56 [MonoNotSupported ("")]
57 public void Clear ()
59 throw new NotImplementedException ();
62 [MonoNotSupported ("")]
63 public bool Contains (DesignerRegion region)
65 throw new NotImplementedException ();
68 [MonoNotSupported ("")]
69 public void CopyTo (Array array, int index)
71 throw new NotImplementedException ();
74 [MonoNotSupported ("")]
75 public IEnumerator GetEnumerator ()
77 throw new NotImplementedException ();
80 [MonoNotSupported ("")]
81 public int IndexOf (DesignerRegion region)
83 throw new NotImplementedException ();
86 [MonoNotSupported ("")]
87 public void Insert (int index, DesignerRegion region)
89 throw new NotImplementedException ();
92 [MonoNotSupported ("")]
93 public void Remove (DesignerRegion region)
95 throw new NotImplementedException ();
98 [MonoNotSupported ("")]
99 public void RemoveAt (int index)
101 throw new NotImplementedException ();
104 [MonoNotSupported ("")]
105 public int Count {
106 get {
107 throw new NotImplementedException ();
111 [MonoNotSupported ("")]
112 public bool IsFixedSize {
113 get {
114 throw new NotImplementedException ();
118 [MonoNotSupported ("")]
119 public bool IsReadOnly {
120 get {
121 throw new NotImplementedException ();
125 [MonoNotSupported ("")]
126 public bool IsSynchronized {
127 get {
128 throw new NotImplementedException ();
132 [MonoNotSupported ("")]
133 public DesignerRegion this[int index] {
134 get {
135 throw new NotImplementedException ();
138 set {
139 throw new NotImplementedException ();
143 [MonoNotSupported ("")]
144 public ControlDesigner Owner {
145 get {
146 throw new NotImplementedException ();
150 [MonoNotSupported ("")]
151 public object SyncRoot {
152 get {
153 throw new NotImplementedException ();
157 // Interface implementations
158 // Interface methods
160 [MonoNotSupported ("")]
161 void ICollection.CopyTo (Array array, int index)
163 throw new NotImplementedException ();
166 [MonoNotSupported ("")]
167 IEnumerator IEnumerable.GetEnumerator ()
169 throw new NotImplementedException ();
172 [MonoNotSupported ("")]
173 int IList.Add (object o)
175 throw new NotImplementedException ();
178 [MonoNotSupported ("")]
179 void IList.Clear ()
181 throw new NotImplementedException ();
184 [MonoNotSupported ("")]
185 bool IList.Contains (object o)
187 throw new NotImplementedException ();
190 [MonoNotSupported ("")]
191 int IList.IndexOf (object o)
193 throw new NotImplementedException ();
196 [MonoNotSupported ("")]
197 void IList.Insert (int index, object o)
199 throw new NotImplementedException ();
202 [MonoNotSupported ("")]
203 void IList.Remove (object o)
205 throw new NotImplementedException ();
208 [MonoNotSupported ("")]
209 void IList.RemoveAt(int index)
211 throw new NotImplementedException ();
214 [MonoNotSupported ("")]
215 int ICollection.Count {
216 get {
217 throw new NotImplementedException ();
221 [MonoNotSupported ("")]
222 bool ICollection.IsSynchronized {
223 get {
224 throw new NotImplementedException ();
228 [MonoNotSupported ("")]
229 object ICollection.SyncRoot {
230 get {
231 throw new NotImplementedException ();
235 [MonoNotSupported ("")]
236 bool IList.IsFixedSize {
237 get {
238 throw new NotImplementedException ();
242 [MonoNotSupported ("")]
243 bool IList.IsReadOnly {
244 get {
245 throw new NotImplementedException ();
249 [MonoNotSupported ("")]
250 object IList.this[int index] {
251 get {
252 throw new NotImplementedException ();
255 set {
256 throw new NotImplementedException ();
261 #endif