Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Schema/XmlSchemaPatternFacet.cs')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Schema/XmlSchemaPatternFacet.cs87
1 files changed, 0 insertions, 87 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaPatternFacet.cs b/mcs/class/System.XML/System.Xml.Schema/XmlSchemaPatternFacet.cs
deleted file mode 100755
index da2effbb380..00000000000
--- a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaPatternFacet.cs
+++ /dev/null
@@ -1,87 +0,0 @@
-// Author: Dwivedi, Ajay kumar
-// Adwiv@Yahoo.com
-using System;
-using System.Xml;
-
-namespace System.Xml.Schema
-{
- /// <summary>
- /// Summary description for XmlSchemaPatternFacet.
- /// </summary>
- public class XmlSchemaPatternFacet : XmlSchemaFacet
- {
- private static string xmlname = "pattern";
-
- public XmlSchemaPatternFacet()
- {
- }
- //<pattern
- // id = ID
- // value = anySimpleType
- // {any attributes with non-schema namespace . . .}>
- // Content: (annotation?)
- //</pattern>
- internal static XmlSchemaPatternFacet Read(XmlSchemaReader reader, ValidationEventHandler h)
- {
- XmlSchemaPatternFacet pattern = new XmlSchemaPatternFacet();
- reader.MoveToElement();
-
- if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)
- {
- error(h,"Should not happen :1: XmlSchemaPatternFacet.Read, name="+reader.Name,null);
- reader.Skip();
- return null;
- }
-
- pattern.LineNumber = reader.LineNumber;
- pattern.LinePosition = reader.LinePosition;
- pattern.SourceUri = reader.BaseURI;
-
- while(reader.MoveToNextAttribute())
- {
- if(reader.Name == "id")
- {
- pattern.Id = reader.Value;
- }
- else if(reader.Name == "value")
- {
- pattern.Value = reader.Value;
- }
- else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)
- {
- error(h,reader.Name + " is not a valid attribute for "+xmlname,null);
- }
- else
- {
- XmlSchemaUtil.ReadUnhandledAttribute(reader,pattern);
- }
- }
-
- reader.MoveToElement();
- if(reader.IsEmptyElement)
- return pattern;
-
- // Content: (annotation?)
- int level = 1;
- while(reader.ReadNextElement())
- {
- if(reader.NodeType == XmlNodeType.EndElement)
- {
- if(reader.LocalName != xmlname)
- error(h,"Should not happen :2: XmlSchemaPatternFacet.Read, name="+reader.Name,null);
- break;
- }
- if(level <= 1 && reader.LocalName == "annotation")
- {
- level = 2; //Only one annotation
- XmlSchemaAnnotation annotation = XmlSchemaAnnotation.Read(reader,h);
- if(annotation != null)
- pattern.Annotation = annotation;
- continue;
- }
- reader.RaiseInvalidElementError();
- }
- return pattern;
- }
- }
-}