2008-05-28 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / ObjectPersistData.jvm.cs
1 #if NET_2_0\r
2 using System.Collections;\r
3 using System.Web.UI;\r
4 \r
5 namespace System.Web.UI\r
6 {\r
7         public class ObjectPersistData\r
8         {\r
9                 public ObjectPersistData (ControlBuilder builder, IDictionary builtObjects) {\r
10                         throw new NotImplementedException ();\r
11                 }\r
12                 public ICollection AllPropertyEntries { get { throw new NotImplementedException (); } }\r
13                 public IDictionary BuiltObjects { get { throw new NotImplementedException (); } }\r
14                 public ICollection CollectionItems { get { throw new NotImplementedException (); } }\r
15                 public ICollection EventEntries { get { throw new NotImplementedException (); } }\r
16                 public bool IsCollection { get { throw new NotImplementedException (); } }\r
17                 public bool Localize { get { throw new NotImplementedException (); } }\r
18                 public Type ObjectType { get { throw new NotImplementedException (); } }\r
19                 public string ResourceKey { get { throw new NotImplementedException (); } }\r
20                 public void AddToObjectControlBuilderTable (IDictionary table) {\r
21                         throw new NotImplementedException ();\r
22                 }\r
23                 public IDictionary GetFilteredProperties (string filter) {\r
24                         throw new NotImplementedException ();\r
25                 }\r
26                 public PropertyEntry GetFilteredProperty (string filter, string name) {\r
27                         throw new NotImplementedException ();\r
28                 }\r
29                 public ICollection GetPropertyAllFilters (string name) {\r
30                         throw new NotImplementedException ();\r
31                 }\r
32         }\r
33 }\r
34 #endif\r