for TARGET_J2EE only:
[mono.git] / mcs / class / System.Web / System.Web.UI / DesignTimeParseData.jvm.cs
1 //\r
2 // System.Web.DesignTimeParseData class\r
3 //\r
4 // \r
5 // Author:\r
6 //      Miguel de Icaza (miguel@novell.com)\r
7 //\r
8 \r
9 //\r
10 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)\r
11 //\r
12 // Permission is hereby granted, free of charge, to any person obtaining\r
13 // a copy of this software and associated documentation files (the\r
14 // "Software"), to deal in the Software without restriction, including\r
15 // without limitation the rights to use, copy, modify, merge, publish,\r
16 // distribute, sublicense, and/or sell copies of the Software, and to\r
17 // permit persons to whom the Software is furnished to do so, subject to\r
18 // the following conditions:\r
19 // \r
20 // The above copyright notice and this permission notice shall be\r
21 // included in all copies or substantial portions of the Software.\r
22 // \r
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
30 //\r
31 \r
32 using System.Collections;\r
33 using System.ComponentModel.Design;\r
34 using System.Security.Permissions;\r
35 \r
36 namespace System.Web.UI {\r
37 \r
38         public sealed class DesignTimeParseData {\r
39                 \r
40                 public DesignTimeParseData (IDesignerHost designerHost, string parseText)\r
41                 {\r
42                         throw new NotImplementedException ();\r
43 \r
44                 }\r
45 #if NET_2_0\r
46                 public DesignTimeParseData (IDesignerHost designerHost, string parseText, string filter)\r
47                         : this (designerHost, parseText)\r
48                 {\r
49                         throw new NotImplementedException ();\r
50                 }\r
51 #endif\r
52 \r
53                 public EventHandler DataBindingHandler {\r
54                         get {\r
55                                 throw new NotImplementedException ();\r
56                         }\r
57 \r
58                         set {\r
59                                 throw new NotImplementedException ();\r
60                         }\r
61                 }\r
62 \r
63                 public IDesignerHost DesignerHost {\r
64                         get {\r
65                                 throw new NotImplementedException ();\r
66                         }\r
67                 }\r
68 \r
69                 public string DocumentUrl {\r
70                         get {\r
71                                 throw new NotImplementedException ();\r
72                         }\r
73 \r
74                         set {\r
75                                 throw new NotImplementedException ();\r
76                         }\r
77                 }\r
78 \r
79                 public string ParseText {\r
80                         get {\r
81                                 throw new NotImplementedException ();\r
82                         }\r
83                 }\r
84 #if NET_2_0\r
85                 public string Filter {\r
86                         get {throw new NotImplementedException (); }\r
87                 }\r
88 \r
89                 public bool ShouldApplyTheme {\r
90                         get {throw new NotImplementedException (); }\r
91                         set {throw new NotImplementedException (); }\r
92                 }\r
93 \r
94                 // FIXME: there's probably a way to set this somewhere...\r
95                 public ICollection UserControlRegisterEntries {\r
96                         get { throw new NotImplementedException (); }\r
97                 }\r
98 #endif\r
99         }\r
100 }\r