MobileListItem.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : MobileListItem
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System;
  11. using System.Web.UI;
  12. namespace System.Web.UI.MobileControls
  13. {
  14. public class MobileListItem : TemplateContainer//, IStateManager
  15. {
  16. public MobileListItem()
  17. {
  18. }
  19. public MobileListItem(MobileListItemType type)
  20. {
  21. throw new NotImplementedException();
  22. }
  23. public MobileListItem(string text)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. public MobileListItem(string text, string value)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. public MobileListItem(object dataItem, string text, string value)
  32. {
  33. throw new NotImplementedException();
  34. }
  35. internal void SetIndex(int index)
  36. {
  37. throw new NotImplementedException();
  38. }
  39. public string Text
  40. {
  41. get
  42. {
  43. throw new NotImplementedException();
  44. }
  45. set
  46. {
  47. throw new NotImplementedException();
  48. }
  49. }
  50. public string Value
  51. {
  52. get
  53. {
  54. throw new NotImplementedException();
  55. }
  56. set
  57. {
  58. throw new NotImplementedException();
  59. }
  60. }
  61. }
  62. }