2002-10-29 Gaurav Vaish <gvaish_mono@lycos.com>
[mono.git] / mcs / class / System.Design / System.Web.UI.Design.WebControls / TableDesigner.cs
1 /**
2  * Namespace:   System.Web.UI.Design.WebControls
3  * Class:       TableDesigner
4  *
5  * Author:      Gaurav Vaish
6  * Maintainer:  gvaish_mono@lycos.com
7  *
8  * (C) Gaurav Vaish (2002)
9  */
10
11 using System;
12 using System.Web;
13 using System.Web.UI.WebControls;
14 using System.Web.UI.Design;
15
16 namespace System.Web.UI.Design.WebControls
17 {
18         public class TableDesigner : TextControlDesigner
19         {
20                 public TableDesigner(): base()
21                 {
22                 }
23
24                 [MonoTODO]
25                 public override string GetDesignTimeHtml()
26                 {
27                         if(Component != null && Component is Table)
28                         {
29                                 Table table = (Table) Component;
30                                 throw new NotImplementedException();
31                         }
32                         return String.Empty;
33                 }
34
35                 [MonoTODO]
36                 public override string GetPersistInnerHtml()
37                 {
38                         throw new NotImplementedException();
39                 }
40         }
41 }