2003-09-04 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Web.Mobile / System.Web.UI.MobileControls / IObjectListFieldCollection.cs
1 /**
2  * Project   : Mono
3  * Namespace : System.Web.UI.MobileControls
4  * Class     : IObjectListFieldCollection
5  * Author    : Gaurav Vaish
6  *
7  * Copyright : 2003 with Gaurav Vaish, and with
8  *             Ximian Inc
9  */
10
11 using System.Collections;
12
13 namespace System.Web.UI.MobileControls
14 {
15         public interface IObjectListFieldCollection : ICollection
16         {
17                 ObjectListField this[int index] { get; }
18                 
19                 ObjectListField[] GetAll();
20                 int               IndexOf(ObjectListField field);
21                 int               IndexOf(string fieldID);
22         }
23 }