New test.
[mono.git] / mcs / class / System.Web / System.Web.UI.Adapters / PageAdapter.cs
1 //
2 // System.Web.UI.Adapters.PageAdapter
3 //
4 // Author:
5 //      Dick Porter  <dick@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 #if NET_2_0
30 using System.Web.UI;
31 using System.Web.UI.WebControls;
32 using System.Collections;
33 using System.Collections.Specialized;
34
35 namespace System.Web.UI.Adapters
36 {
37         public abstract class PageAdapter : ControlAdapter
38         {
39                 protected PageAdapter ()
40                 {
41                 }
42
43                 [MonoTODO]
44                 public virtual StringCollection CacheVaryByHeaders 
45                 {
46                         get {
47                                 throw new NotImplementedException ();
48                         }
49                 }
50
51                 [MonoTODO]
52                 public virtual StringCollection CacheVaryByParams 
53                 {
54                         get {
55                                 throw new NotImplementedException ();
56                         }
57                 }
58                 
59                 [MonoTODO]
60                 protected string ClientState 
61                 {
62                         get {
63                                 throw new NotImplementedException ();
64                         }
65                 }
66                 
67                 [MonoTODO]
68                 public virtual NameValueCollection DeterminePostBackMode ()
69                 {
70                         throw new NotImplementedException ();
71                 }
72
73                 [MonoTODO]
74                 public virtual ICollection GetRadioButtonsByGroup (string groupName)
75                 {
76                         throw new NotImplementedException ();
77                 }
78
79                 [MonoTODO]
80                 public virtual PageStatePersister GetStatePersister ()
81                 {
82                         throw new NotImplementedException ();
83                 }
84
85                 [MonoTODO]
86                 public virtual void RegisterRadioButton (RadioButton radioButton)
87                 {
88                         throw new NotImplementedException ();
89                 }
90
91                 [MonoTODO]
92                 public virtual void RenderBeginHyperlink (HtmlTextWriter w,
93                                                           string targetUrl,
94                                                           bool encodeUrl,
95                                                           string softKeyLabel)
96                 {
97                         throw new NotImplementedException ();
98                 }
99
100                 [MonoTODO]
101                 public virtual void RenderBeginHyperlink (HtmlTextWriter w,
102                                                           string targetUrl,
103                                                           bool encodeUrl,
104                                                           string softKeyLabel,
105                                                           string accessKey)
106                 {
107                         throw new NotImplementedException ();
108                 }
109                 
110                 [MonoTODO]
111                 public virtual void RenderEndHyperlink (HtmlTextWriter w)
112                 {
113                         throw new NotImplementedException ();
114                 }
115
116                 [MonoTODO]
117                 public virtual void RenderPostBackEvent (HtmlTextWriter w,
118                                                          string target,
119                                                          string argument,
120                                                          string softKeyLabel,
121                                                          string text)
122                 {
123                         throw new NotImplementedException ();
124                 }
125
126                 [MonoTODO]
127                 public virtual void RenderPostBackEvent (HtmlTextWriter w,
128                                                          string target,
129                                                          string argument,
130                                                          string softKeyLabel,
131                                                          string text,
132                                                          string postUrl,
133                                                          string accessKey)
134                 {
135                         throw new NotImplementedException ();
136                 }
137
138                 [MonoTODO]
139                 protected void RenderPostBackEvent (HtmlTextWriter w,
140                                                     string target,
141                                                     string argument,
142                                                     string softKeyLabel,
143                                                     string text,
144                                                     string postUrl,
145                                                     string accessKey,
146                                                     bool encode)
147                 {
148                         throw new NotImplementedException ();
149                 }
150
151                 [MonoTODO]
152                 public virtual string TransformText (string text) 
153                 {
154                         throw new NotImplementedException ();
155                 }
156                 
157                 [MonoTODO]
158                 protected internal virtual string GetPostBackFormReference (string formID)
159                 {
160                         throw new NotImplementedException ();
161                 }
162         }
163 }
164 #endif