This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.XML / System.Xml.XPath / XPathAtomicValue.cs
1 //
2 // XPathAtomicValue.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // (C)2004 Novell Inc.
8 //
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
31 #if NET_2_0
32
33 using System.Collections;
34 using System.Xml;
35 using System.Xml.Schema;
36
37 namespace System.Xml.XPath
38 {
39         public sealed class XPathAtomicValue
40         {
41
42                 #region Constructors
43
44                 [MonoTODO]
45                 public XPathAtomicValue (bool value, XmlSchemaType xmlType)
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 [MonoTODO]
51                 public XPathAtomicValue (DateTime value, XmlSchemaType xmlType)
52                 {
53                         throw new NotImplementedException ();
54                 }
55
56                 [MonoTODO]
57                 public XPathAtomicValue (decimal value, XmlSchemaType xmlType)
58                 {
59                         throw new NotImplementedException ();
60                 }
61
62                 [MonoTODO]
63                 public XPathAtomicValue (double value, XmlSchemaType xmlType)
64                 {
65                         throw new NotImplementedException ();
66                 }
67
68                 [MonoTODO]
69                 public XPathAtomicValue (int value, XmlSchemaType xmlType)
70                 {
71                         throw new NotImplementedException ();
72                 }
73
74                 [MonoTODO]
75                 public XPathAtomicValue (long value, XmlSchemaType xmlType)
76                 {
77                         throw new NotImplementedException ();
78                 }
79
80                 [MonoTODO]
81                 public XPathAtomicValue (object value, XmlSchemaType xmlType)
82                 {
83                         throw new NotImplementedException ();
84                 }
85
86                 [MonoTODO]
87                 public XPathAtomicValue (float value, XmlSchemaType xmlType)
88                 {
89                         throw new NotImplementedException ();
90                 }
91
92                 [MonoTODO]
93                 public XPathAtomicValue (string value, XmlSchemaType xmlType)
94                 {
95                         throw new NotImplementedException ();
96                 }
97
98                 #endregion
99
100                 #region Methods
101
102                 [MonoTODO]
103                 public XPathAtomicValue Clone ()
104                 {
105                         throw new NotImplementedException ();
106                 }
107
108                 public object ValueAs (Type type)
109                 {
110                         return ValueAs (type, null);
111                 }
112
113                 [MonoTODO]
114                 public object ValueAs (Type type, IXmlNamespaceResolver nsResolver)
115                 {
116                         throw new NotImplementedException ();
117                 }
118
119                 #endregion
120
121                 #region Properties
122
123                 [MonoTODO]
124                 public bool IsNode {
125                         get { throw new NotImplementedException (); }
126                 }
127
128                 [MonoTODO]
129                 public object TypedValue {
130                         get { throw new NotImplementedException (); }
131                 }
132
133                 [MonoTODO]
134                 public string Value {
135                         get { throw new NotImplementedException (); }
136                 }
137
138                 [MonoTODO]
139                 public bool ValueAsBoolean {
140                         get { throw new NotImplementedException (); }
141                 }
142
143                 [MonoTODO]
144                 public DateTime ValueAsDateTime {
145                         get { throw new NotImplementedException (); }
146                 }
147
148                 [MonoTODO]
149                 public decimal ValueAsDecimal {
150                         get { throw new NotImplementedException (); }
151                 }
152
153                 [MonoTODO]
154                 public double ValueAsDouble {
155                         get { throw new NotImplementedException (); }
156                 }
157
158                 [MonoTODO]
159                 public int ValueAsInt32 {
160                         get { throw new NotImplementedException (); }
161                 }
162
163                 [MonoTODO]
164                 public long ValueAsInt64 {
165                         get { throw new NotImplementedException (); }
166                 }
167
168                 [MonoTODO]
169                 public ICollection ValueAsList {
170                         get { throw new NotImplementedException (); }
171                 }
172
173                 [MonoTODO]
174                 public float ValueAsSingle {
175                         get { throw new NotImplementedException (); }
176                 }
177
178                 [MonoTODO]
179                 public Type ValueType {
180                         get { throw new NotImplementedException (); }
181                 }
182
183                 [MonoTODO]
184                 public XmlSchemaType XmlType {
185                         get { throw new NotImplementedException (); }
186                 }
187
188                 #endregion
189         }
190 }
191
192 #endif