2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / class / System.Data.ObjectSpaces / System.Data.ObjectSpaces / ObjectQuery.cs
1 //\r
2 // System.Data.ObjectSpaces.ObjectQuery.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2003\r
8 //\r
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 \r
31 #if NET_2_0\r
32 \r
33 namespace System.Data.ObjectSpaces\r
34 {\r
35         public class ObjectQuery\r
36         {\r
37                 bool baseTypeOnly;\r
38                 Type objectType;\r
39                 string query;\r
40                 string sort;\r
41                 string span;\r
42 \r
43                 [MonoTODO()]\r
44                 public ObjectQuery (Type type, string query)\r
45                         : this (type, query, null)\r
46                 {\r
47                 }\r
48 \r
49                 [MonoTODO()]\r
50                 public ObjectQuery (Type type, string query, string span)\r
51                 {\r
52                         SetObjectType (type);\r
53                         SetQuery (query);\r
54 \r
55                         this.baseTypeOnly = false;\r
56                         this.sort = null;\r
57                         this.span = span;\r
58                 }\r
59 \r
60                 [MonoTODO("Error handling")]\r
61                 public bool BaseTypeOnly {\r
62                         get { return baseTypeOnly; }\r
63                         set { baseTypeOnly = value; }\r
64                 }\r
65 \r
66                 public Type ObjectType {\r
67                         get { return objectType; }\r
68                 }\r
69 \r
70                 public string Query {\r
71                         get { return query; }\r
72                 }\r
73 \r
74                 public string Sort {\r
75                         get { return sort; }\r
76                         set { sort = value; }\r
77                 }\r
78 \r
79                 public string Span {\r
80                         get { return span; }\r
81                 }\r
82 \r
83                 [MonoTODO()]\r
84                 private void SetObjectType (Type type)\r
85                 {\r
86                         objectType = type;\r
87                 }\r
88 \r
89                 [MonoTODO()]\r
90                 private void SetQuery (string query)\r
91                 {\r
92                         this.query = query;\r
93                 }\r
94         }\r
95 }\r
96 \r
97 #endif\r