/** * Project : Mono * Namespace : System.Web.UI.MobileControls * Class : MobileListItem * Author : Gaurav Vaish * * Copyright : 2003 with Gaurav Vaish, and with * Ximian Inc */ using System; using System.Web.UI; namespace System.Web.UI.MobileControls { public class MobileListItem : TemplateContainer//, IStateManager { public MobileListItem() { } public MobileListItem(MobileListItemType type) { throw new NotImplementedException(); } public MobileListItem(string text) { throw new NotImplementedException(); } public MobileListItem(string text, string value) { throw new NotImplementedException(); } public MobileListItem(object dataItem, string text, string value) { throw new NotImplementedException(); } public string Text { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public string Value { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } } }