(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaMaxExclusiveFacet.cs
bloba05a11df87caf6bd079c416cfd129399f63556ea
1 // Author: Dwivedi, Ajay kumar
2 // Adwiv@Yahoo.com
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining
6 // a copy of this software and associated documentation files (the
7 // "Software"), to deal in the Software without restriction, including
8 // without limitation the rights to use, copy, modify, merge, publish,
9 // distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so, subject to
11 // the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be
14 // included in all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 using System;
25 using System.Xml;
27 namespace System.Xml.Schema
29 /// <summary>
30 /// Summary description for XmlSchemaMaxExclusiveFacet.
31 /// </summary>
32 public class XmlSchemaMaxExclusiveFacet : XmlSchemaFacet
34 const string xmlname = "maxExclusive";
36 public XmlSchemaMaxExclusiveFacet()
40 internal override Facet ThisFacet {
41 get { return Facet.maxExclusive;}
44 //<maxExclusive
45 // fixed = boolean : false
46 // id = ID
47 // value = anySimpleType
48 // {any attributes with non-schema namespace . . .}>
49 // Content: (annotation?)
50 //</maxExclusive>
51 internal static XmlSchemaMaxExclusiveFacet Read(XmlSchemaReader reader, ValidationEventHandler h)
53 XmlSchemaMaxExclusiveFacet maxex = new XmlSchemaMaxExclusiveFacet();
54 reader.MoveToElement();
56 if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)
58 error(h,"Should not happen :1: XmlSchemaMaxExclusiveFacet.Read, name="+reader.Name,null);
59 reader.Skip();
60 return null;
63 maxex.LineNumber = reader.LineNumber;
64 maxex.LinePosition = reader.LinePosition;
65 maxex.SourceUri = reader.BaseURI;
67 while(reader.MoveToNextAttribute())
69 if(reader.Name == "id")
71 maxex.Id = reader.Value;
73 else if(reader.Name == "fixed")
75 Exception innerex;
76 maxex.IsFixed = XmlSchemaUtil.ReadBoolAttribute(reader,out innerex);
77 if(innerex != null)
78 error(h, reader.Value + " is not a valid value for fixed attribute",innerex);
80 else if(reader.Name == "value")
82 maxex.Value = reader.Value;
84 else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)
86 error(h,reader.Name + " is not a valid attribute for "+xmlname,null);
88 else
90 XmlSchemaUtil.ReadUnhandledAttribute(reader,maxex);
94 reader.MoveToElement();
95 if(reader.IsEmptyElement)
96 return maxex;
98 // Content: (annotation?)
99 int level = 1;
100 while(reader.ReadNextElement())
102 if(reader.NodeType == XmlNodeType.EndElement)
104 if(reader.LocalName != xmlname)
105 error(h,"Should not happen :2: XmlSchemaMaxExclusiveFacet.Read, name="+reader.Name,null);
106 break;
108 if(level <= 1 && reader.LocalName == "annotation")
110 level = 2; //Only one annotation
111 XmlSchemaAnnotation annotation = XmlSchemaAnnotation.Read(reader,h);
112 if(annotation != null)
113 maxex.Annotation = annotation;
114 continue;
116 reader.RaiseInvalidElementError();
118 return maxex;