2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Design / System.Web.UI.Design / DesignerAutoFormatCollection.cs
blobc9f1154b8b0f7d79cf5fde6935976fd4763080e0
1 //
2 // System.ComponentModel.Design.Data.DesignerAutoFormatCollection
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;
34 using System.Drawing;
35 using System.ComponentModel.Design;
36 using System.ComponentModel;
37 using System.Web.UI.WebControls;
38 using System.Collections;
40 namespace System.Web.UI.Design
42 public sealed class DesignerAutoFormatCollection : IList, ICollection, IEnumerable
44 public DesignerAutoFormatCollection ()
48 [MonoTODO]
49 public int Count {
50 get { throw new NotImplementedException (); }
53 [MonoTODO]
54 public DesignerAutoFormat this [int index] {
55 get { throw new NotImplementedException (); }
58 [MonoTODO]
59 public Size PreviewSize {
60 get { throw new NotImplementedException (); }
63 [MonoTODO]
64 public object SyncRoot {
65 get { throw new NotImplementedException (); }
68 [MonoTODO]
69 public int Add (DesignerAutoFormat format)
71 throw new NotImplementedException ();
74 [MonoTODO]
75 public void Clear ()
77 throw new NotImplementedException ();
80 [MonoTODO]
81 public bool Contains (DesignerAutoFormat format)
83 throw new NotImplementedException ();
86 [MonoTODO]
87 public int IndexOf (DesignerAutoFormat format)
89 throw new NotImplementedException ();
92 [MonoTODO]
93 public void Insert (int index, DesignerAutoFormat format)
95 throw new NotImplementedException ();
98 [MonoTODO]
99 public void Remove (DesignerAutoFormat format)
101 throw new NotImplementedException ();
104 [MonoTODO]
105 public void RemoveAt (int index)
107 throw new NotImplementedException ();
110 [MonoTODO]
111 void ICollection.CopyTo (Array array, int index)
113 throw new NotImplementedException ();
116 [MonoTODO]
117 int ICollection.Count {
118 get { return Count; }
121 [MonoTODO]
122 bool ICollection.IsSynchronized {
123 get { throw new NotImplementedException (); }
126 [MonoTODO]
127 IEnumerator IEnumerable.GetEnumerator ()
129 throw new NotImplementedException ();
132 [MonoTODO]
133 int IList.Add (object item)
135 throw new NotImplementedException ();
138 [MonoTODO]
139 bool IList.Contains (object item)
141 throw new NotImplementedException ();
144 [MonoTODO]
145 int IList.IndexOf (object item)
147 throw new NotImplementedException ();
150 [MonoTODO]
151 void IList.Insert (int index, object item)
153 throw new NotImplementedException ();
156 [MonoTODO]
157 void IList.Remove (object item)
159 throw new NotImplementedException ();
162 [MonoTODO]
163 void IList.RemoveAt (int index)
165 throw new NotImplementedException ();
168 [MonoTODO]
169 bool IList.IsFixedSize {
170 get { throw new NotImplementedException (); }
173 [MonoTODO]
174 bool IList.IsReadOnly {
175 get { throw new NotImplementedException (); }
178 [MonoTODO]
179 object IList.this [int index] {
180 get { throw new NotImplementedException (); }
181 set { throw new NotImplementedException (); }
186 #endif