importing messaging-2008 branch to trunk.
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / HtmlControlBuilder.cs
1 //
2 // System.Web.UI.HtmlControls.HtmlControlBuilder
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
9
10 using System.Web.UI;
11
12 namespace System.Web.UI.HtmlControls
13 {
14         class HtmlControlBuilder : ControlBuilder
15         {
16                 public override bool HasBody ()
17                 {
18                         return false;
19                 }
20         }
21 }
22