Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaurav Vaish <gvaish@mono-cvs.ximian.com>2003-04-14 12:39:34 +0400
committerGaurav Vaish <gvaish@mono-cvs.ximian.com>2003-04-14 12:39:34 +0400
commit087e75b3369a1ca45e85cb832022cf916b3e3c3e (patch)
tree0404bb7a9923b7b87a9ce757828138898dc65306 /mcs/class/System.Web.Mobile
parent7fbbaed9de36a30159863b60d0ffb8bd70c0fd78 (diff)
2003-04-08 Gaurav Vaish <gvaish_mono AT lycos.com>
* HtmlControlAdapter.cs : Initial implementation. svn path=/trunk/mcs/; revision=13585
Diffstat (limited to 'mcs/class/System.Web.Mobile')
-rw-r--r--mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/ChangeLog4
-rw-r--r--mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/HtmlControlAdapter.cs24
2 files changed, 28 insertions, 0 deletions
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/ChangeLog b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/ChangeLog
new file mode 100644
index 00000000000..4b0a3490e4a
--- /dev/null
+++ b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/ChangeLog
@@ -0,0 +1,4 @@
+
+2003-04-08 Gaurav Vaish <gvaish_mono AT lycos.com>
+
+ * HtmlControlAdapter.cs : Initial implementation. \ No newline at end of file
diff --git a/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/HtmlControlAdapter.cs b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/HtmlControlAdapter.cs
new file mode 100644
index 00000000000..dc9261c93e9
--- /dev/null
+++ b/mcs/class/System.Web.Mobile/System.Web.UI.MobileControls.Adapters/HtmlControlAdapter.cs
@@ -0,0 +1,24 @@
+/**
+ * Project : Mono
+ * Namespace : System.Web.UI.MobileControls.Adapters
+ * Class : HtmlControlAdapter
+ * Author : Gaurav Vaish
+ *
+ * Copyright : 2003 with Gaurav Vaish, and with
+ * Ximian Inc
+ */
+
+using System;
+using System.Collections;
+using System.Web;
+using System.Web.UI;
+
+namespace System.Web.Mobile
+{
+ public class HtmlControlAdapter //: ControlAdapter
+ {
+ public HtmlControlAdapter()
+ {
+ }
+ }
+}