2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[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
45                 public XmlSchemaInfo ()
46                 {
47                 }
48
49                 internal XmlSchemaInfo (IXmlSchemaInfo info)
50                 {
51                         isDefault = info.IsDefault;
52                         isNil = info.IsNil;
53                         memberType = info.MemberType;
54                         attr = info.SchemaAttribute;
55                         elem = info.SchemaElement;
56                         type = info.SchemaType;
57                         validity = info.Validity;
58                 }
59
60                 [MonoTODO]
61                 public bool IsDefault {
62                         get { return isDefault; }
63                         set { isDefault = value; }
64                 }
65
66                 [MonoTODO]
67                 public bool IsNil {
68                         get { return isNil; }
69                         set { isNil = value; }
70                 }
71
72                 [MonoTODO]
73                 public XmlSchemaSimpleType MemberType {
74                         get { return memberType; }
75                         set { memberType = value; }
76                 }
77
78                 [MonoTODO]
79                 public XmlSchemaAttribute SchemaAttribute {
80                         get { return attr; }
81                         set { attr = value; }
82                 }
83
84                 [MonoTODO]
85                 public XmlSchemaElement SchemaElement {
86                         get { return elem; }
87                         set { elem = value; }
88                 }
89
90                 [MonoTODO]
91                 public XmlSchemaType SchemaType {
92                         get { return type; }
93                         set { type = value; }
94                 }
95
96                 [MonoTODO]
97                 public XmlSchemaValidity Validity {
98                         get { return validity; }
99                         set { validity = value; }
100                 }
101         }
102 }
103 #endif