2003-09-04 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Web.Mobile / System.Web.UI.MobileControls / TextControl.cs
1 /**
2  * Project   : Mono
3  * Namespace : System.Web.UI.MobileControls
4  * Class     : TextControl
5  * Author    : Gaurav Vaish
6  *
7  * Copyright : 2003 with Gaurav Vaish, and with
8  *             Ximian Inc
9  */
10
11 using System.Web.UI;
12
13 namespace System.Web.UI.MobileControls
14 {
15         public class TextControl : MobileControl
16         {
17                 public TextControl()
18                 {
19                 }
20
21                 /*
22                  * Document speaks of
23                  * public IControlAdapter Adapter { get; }
24                  * but this is not available (no such property).
25                  * So, I am not keeping it.
26                  */
27
28                 public string Text
29                 {
30                         get
31                         {
32                                 return InnerText;
33                         }
34                         set
35                         {
36                                 InnerText = value;
37                         }
38                 }
39         }
40 }