System.XML: Remove more NET_2_0 directives
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaInfo.cs
1 //
2 // XmlSchemaInfo.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 namespace System.Xml.Schema
33 {
34         [MonoTODO]
35         public class XmlSchemaInfo : IXmlSchemaInfo
36         {
37                 bool isDefault;
38                 bool isNil;
39                 XmlSchemaSimpleType memberType;
40                 XmlSchemaAttribute attr;
41                 XmlSchemaElement elem;
42                 XmlSchemaType type;
43                 XmlSchemaValidity validity;
44                 XmlSchemaContentType contentType;
45
46                 public XmlSchemaInfo ()
47                 {
48                 }
49
50                 internal XmlSchemaInfo (IXmlSchemaInfo info)
51                 {
52                         isDefault = info.IsDefault;
53                         isNil = info.IsNil;
54                         memberType = info.MemberType;
55                         attr = info.SchemaAttribute;
56                         elem = info.SchemaElement;
57                         type = info.SchemaType;
58                         validity = info.Validity;
59                 }
60
61                 [MonoTODO]
62                 public XmlSchemaContentType ContentType {
63                         get { return contentType; }
64                         set { contentType = value; }
65                 }
66
67                 [MonoTODO]
68                 public bool IsDefault {
69                         get { return isDefault; }
70                         set { isDefault = value; }
71                 }
72
73                 [MonoTODO]
74                 public bool IsNil {
75                         get { return isNil; }
76                         set { isNil = value; }
77                 }
78
79                 [MonoTODO]
80                 public XmlSchemaSimpleType MemberType {
81                         get { return memberType; }
82                         set { memberType = value; }
83                 }
84
85                 [MonoTODO]
86                 public XmlSchemaAttribute SchemaAttribute {
87                         get { return attr; }
88                         set { attr = value; }
89                 }
90
91                 [MonoTODO]
92                 public XmlSchemaElement SchemaElement {
93                         get { return elem; }
94                         set { elem = value; }
95                 }
96
97                 [MonoTODO]
98                 public XmlSchemaType SchemaType {
99                         get { return type; }
100                         set { type = value; }
101                 }
102
103                 [MonoTODO]
104                 public XmlSchemaValidity Validity {
105                         get { return validity; }
106                         set { validity = value; }
107                 }
108         }
109 }
110 #endif