update this directory to include the handle branch changes, as well as the SendParent...
[mono-project.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaInfo.cs
blob7a75fde70529ebf23845fc44445206df62fa8895
1 //
2 // XmlSchemaInfo.cs
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // (C)2004 Novell, Inc.
8 //
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.
31 #if NET_2_0
32 namespace System.Xml.Schema
34 [MonoTODO]
35 public class XmlSchemaInfo : IXmlSchemaInfo
37 bool isDefault;
38 bool isNil;
39 XmlSchemaSimpleType memberType;
40 XmlSchemaAttribute attr;
41 XmlSchemaElement elem;
42 XmlSchemaType type;
43 XmlSchemaValidity validity;
44 XmlSchemaContentType contentType;
46 public XmlSchemaInfo ()
50 internal XmlSchemaInfo (IXmlSchemaInfo info)
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;
61 [MonoTODO]
62 public XmlSchemaContentType ContentType {
63 get { return contentType; }
64 set { contentType = value; }
67 [MonoTODO]
68 public bool IsDefault {
69 get { return isDefault; }
70 set { isDefault = value; }
73 [MonoTODO]
74 public bool IsNil {
75 get { return isNil; }
76 set { isNil = value; }
79 [MonoTODO]
80 public XmlSchemaSimpleType MemberType {
81 get { return memberType; }
82 set { memberType = value; }
85 [MonoTODO]
86 public XmlSchemaAttribute SchemaAttribute {
87 get { return attr; }
88 set { attr = value; }
91 [MonoTODO]
92 public XmlSchemaElement SchemaElement {
93 get { return elem; }
94 set { elem = value; }
97 [MonoTODO]
98 public XmlSchemaType SchemaType {
99 get { return type; }
100 set { type = value; }
103 [MonoTODO]
104 public XmlSchemaValidity Validity {
105 get { return validity; }
106 set { validity = value; }
110 #endif