* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web / System.Web.UI / DataBoundLiteralControl.cs
old mode 100755 (executable)
new mode 100644 (file)
index 28c933e..99a66a6
@@ -1,21 +1,47 @@
 //
-// System.Web.UI.DataBoundLiteralCOntrol.cs
+// System.Web.UI.DataBoundLiteralControl.cs
 //
 // Authors:
 //     Duncan Mak  (duncan@ximian.com)
 //     Gonzalo Paniagua Javier (gonzalo@ximian.com)
 //
 // (C) 2002 Ximian, Inc. (http://www.ximian.com)
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.ComponentModel;
+using System.Security.Permissions;
 using System.Text;
 
 namespace System.Web.UI {
 
+       // CAS - no InheritanceDemand here as the class is sealed
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       // attributes
        [ToolboxItem(false)]
        public sealed class DataBoundLiteralControl : Control
+#if NET_2_0
+       , ITextControl
+#endif
        {
                private string [] staticLiterals;
                private string [] dataBoundLiterals;
@@ -25,7 +51,7 @@ namespace System.Web.UI {
                {
                        staticLiterals = new string [staticLiteralsCount];
                        dataBoundLiterals = new string [dataBoundLiteralCount];
-                       PreventAutoID ();
+                       AutoID = false;
                }
 
                public string Text {
@@ -54,12 +80,17 @@ namespace System.Web.UI {
                {
                        if (savedState != null) {
                                Array source = (Array) savedState;
-                               dataBoundLiterals = new string [source.Length];
-                               source.CopyTo (dataBoundLiterals, 0);
+                               if (source.Length == dataBoundLiterals.Length)
+                                       source.CopyTo (dataBoundLiterals, 0);
                        }
                }
 
-               protected override void Render (HtmlTextWriter output)
+#if NET_2_0
+               protected internal
+#else
+               protected
+#endif
+               override void Render (HtmlTextWriter output)
                {
                        output.Write (Text);
                }
@@ -80,6 +111,17 @@ namespace System.Web.UI {
                {
                        staticLiterals [index] = s;
                }
+
+#if NET_2_0
+               string ITextControl.Text {
+                       get {
+                               return Text;
+                       }
+                       set {
+                               throw new NotSupportedException ();
+                       }
+               }
+#endif         
        }
 }