2003-09-04 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Web.Mobile / System.Web.UI.MobileControls / ObjectList.cs
1 /**
2  * Project   : Mono
3  * Namespace : System.Web.UI.MobileControls
4  * Class     : ObjectList
5  * Author    : Gaurav Vaish
6  *
7  * Copyright : 2003 with Gaurav Vaish, and with
8  *             Ximian Inc
9  */
10
11 using System;
12 using System.Web.UI;
13
14 namespace System.Web.UI.MobileControls
15 {
16         public class ObjectList // : PagedControl, INamingContainer,
17                                 // ITemplateable, IPostBackEventHander
18         {
19                 public ObjectList()
20                 {
21                 }
22
23                 public IObjectListFieldCollection AllFields
24                 {
25                         get
26                         {
27                                 throw new NotImplementedException();
28                         }
29                 }
30         }
31 }