2003-01-13 Gaurav Vaish <gvaish_mono AT lycos.com>
authorGaurav Vaish <gvaish@mono-cvs.ximian.com>
Mon, 13 Jan 2003 16:52:22 +0000 (16:52 -0000)
committerGaurav Vaish <gvaish@mono-cvs.ximian.com>
Mon, 13 Jan 2003 16:52:22 +0000 (16:52 -0000)
* Label.cs               : The smallest class on this earth.

svn path=/trunk/mcs/; revision=10464

mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/ChangeLog
mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/Label.cs [new file with mode: 0644]

index 7a3ac9f447ba2271dcde303b15eb8ca5bf9a826b..5cb552f9903e4a5cfe5ceded0a474b242f19b1e0 100644 (file)
@@ -1,4 +1,8 @@
 
+2003-01-13     Gaurav Vaish <gvaish_mono AT lycos.com>
+
+       * Label.cs               : The smallest class on this earth.
+
 2003-01-12     Gaurav Vaish <gvaish_mono AT lycos.com>
 
        * MobileControl.cs       : Stub-ing completed. ;-)
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/Label.cs b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls/Label.cs
new file mode 100644 (file)
index 0000000..635d67f
--- /dev/null
@@ -0,0 +1,21 @@
+/**
+ * Project   : Mono
+ * Namespace : System.Web.UI.MobileControls
+ * Class     : Label
+ * Author    : Gaurav Vaish
+ *
+ * Copyright : 2002 with Gaurav Vaish, and with
+ *             Ximian Inc
+ */
+
+using System.Web.Mobile;
+
+namespace System.Web.UI.MobileControls
+{
+       public class Label : MobileControl
+       {
+               public Label()
+               {
+               }
+       }
+}