[asp.net] Fix for bug #650695. Implements the System.Web.{HttpNotFoundHandler,HttpNot...
[mono.git] / mcs / class / System.Web / System.Web.UI / DesignTimeParseData.jvm.cs
index 146a203dd56227d82384f6c17636a224420868b6..fcdaa5fe131814626b2e51626b6115495fc6e8c8 100644 (file)
-//\r
-// System.Web.DesignTimeParseData class\r
-//\r
-// \r
-// Author:\r
-//     Miguel de Icaza (miguel@novell.com)\r
-//\r
-\r
-//\r
-// Copyright (C) 2005 Novell, Inc (http://www.novell.com)\r
-//\r
-// Permission is hereby granted, free of charge, to any person obtaining\r
-// a copy of this software and associated documentation files (the\r
-// "Software"), to deal in the Software without restriction, including\r
-// without limitation the rights to use, copy, modify, merge, publish,\r
-// distribute, sublicense, and/or sell copies of the Software, and to\r
-// permit persons to whom the Software is furnished to do so, subject to\r
-// the following conditions:\r
-// \r
-// The above copyright notice and this permission notice shall be\r
-// included in all copies or substantial portions of the Software.\r
-// \r
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
-//\r
-\r
-using System.Collections;\r
-using System.ComponentModel.Design;\r
-using System.Security.Permissions;\r
-\r
-namespace System.Web.UI {\r
-\r
-       public sealed class DesignTimeParseData {\r
-               \r
-               public DesignTimeParseData (IDesignerHost designerHost, string parseText)\r
-               {\r
-                       throw new NotImplementedException ();\r
-\r
-               }\r
-#if NET_2_0\r
-               public DesignTimeParseData (IDesignerHost designerHost, string parseText, string filter)\r
-                       : this (designerHost, parseText)\r
-               {\r
-                       throw new NotImplementedException ();\r
-               }\r
-#endif\r
-\r
-               public EventHandler DataBindingHandler {\r
-                       get {\r
-                               throw new NotImplementedException ();\r
-                       }\r
-\r
-                       set {\r
-                               throw new NotImplementedException ();\r
-                       }\r
-               }\r
-\r
-               public IDesignerHost DesignerHost {\r
-                       get {\r
-                               throw new NotImplementedException ();\r
-                       }\r
-               }\r
-\r
-               public string DocumentUrl {\r
-                       get {\r
-                               throw new NotImplementedException ();\r
-                       }\r
-\r
-                       set {\r
-                               throw new NotImplementedException ();\r
-                       }\r
-               }\r
-\r
-               public string ParseText {\r
-                       get {\r
-                               throw new NotImplementedException ();\r
-                       }\r
-               }\r
-#if NET_2_0\r
-               public string Filter {\r
-                       get {throw new NotImplementedException (); }\r
-               }\r
-\r
-               public bool ShouldApplyTheme {\r
-                       get {throw new NotImplementedException (); }\r
-                       set {throw new NotImplementedException (); }\r
-               }\r
-\r
-               // FIXME: there's probably a way to set this somewhere...\r
-               public ICollection UserControlRegisterEntries {\r
-                       get { throw new NotImplementedException (); }\r
-               }\r
-#endif\r
-       }\r
-}\r
+//
+// System.Web.DesignTimeParseData class
+//
+// 
+// Author:
+//     Miguel de Icaza (miguel@novell.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.Collections;
+using System.ComponentModel.Design;
+using System.Security.Permissions;
+
+namespace System.Web.UI {
+
+       public sealed class DesignTimeParseData {
+               
+               public DesignTimeParseData (IDesignerHost designerHost, string parseText)
+               {
+                       throw new NotImplementedException ();
+
+               }
+#if NET_2_0
+               public DesignTimeParseData (IDesignerHost designerHost, string parseText, string filter)
+                       : this (designerHost, parseText)
+               {
+                       throw new NotImplementedException ();
+               }
+#endif
+
+               public EventHandler DataBindingHandler {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+
+                       set {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public IDesignerHost DesignerHost {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public string DocumentUrl {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+
+                       set {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public string ParseText {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+#if NET_2_0
+               public string Filter {
+                       get {throw new NotImplementedException (); }
+               }
+
+               public bool ShouldApplyTheme {
+                       get {throw new NotImplementedException (); }
+                       set {throw new NotImplementedException (); }
+               }
+
+               // FIXME: there's probably a way to set this somewhere...
+               public ICollection UserControlRegisterEntries {
+                       get { throw new NotImplementedException (); }
+               }
+#endif
+       }
+}