2004-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / XmlBuilder.cs
1 //
2 // System.Web.UI.WebControls.XmlBuilder.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 //
8
9 using System;
10 using System.Collections;
11 using System.Web.UI;
12
13 namespace System.Web.UI.WebControls
14 {
15         internal class XmlBuilder : ControlBuilder
16         {
17                 public override void AppendLiteralString (string s)
18                 {       
19                 }
20
21                 public override Type GetChildControlType (string tagName, IDictionary attribs)
22                 {
23                         return null;
24                 }
25
26                 public override bool NeedsTagInnerText ()
27                 {
28                         return true;
29                 }
30
31                 [MonoTODO ("find out what this does and implement")]
32                 public override void SetTagInnerText (string text)
33                 {
34                         throw new NotImplementedException ();
35                 }
36         }
37 }