Removal of NET_1_1 defines and some NET_2_0; Both defines are true these days in...
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaSimpleContent.cs
old mode 100755 (executable)
new mode 100644 (file)
index 485dcf1..b3c1502
@@ -1,10 +1,10 @@
-//\r
-// System.Xml.Schema.XmlSchemaSimpleContent.cs\r
-//\r
-// Author:\r
-//     Dwivedi, Ajay kumar  Adwiv@Yahoo.com\r
-//     Atsushi Enomoto  ginga@kit.hi-ho.ne.jp\r
-//\r
+//
+// System.Xml.Schema.XmlSchemaSimpleContent.cs
+//
+// Author:
+//     Dwivedi, Ajay kumar  Adwiv@Yahoo.com
+//     Atsushi Enomoto  ginga@kit.hi-ho.ne.jp
+//
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-using System;\r
-using System.Xml.Serialization;\r
-using System.Xml;\r
-\r
-namespace System.Xml.Schema\r
-{\r
-       /// <summary>\r
-       /// Summary description for XmlSchemaSimpleContent.\r
-       /// </summary>\r
-       public class XmlSchemaSimpleContent : XmlSchemaContentModel\r
-       {\r
-               private XmlSchemaContent content;\r
-               const string xmlname = "simpleContent";\r
-               public XmlSchemaSimpleContent()\r
-               {\r
-               }\r
-\r
-               [XmlElement("restriction",typeof(XmlSchemaSimpleContentRestriction),Namespace=XmlSchema.Namespace)]\r
-               [XmlElement("extension",typeof(XmlSchemaSimpleContentExtension),Namespace=XmlSchema.Namespace)]\r
-               public override XmlSchemaContent Content \r
-               {\r
-                       get{ return  content; } \r
-                       set{ content = value; }\r
-               }\r
-\r
-               ///<remarks>\r
-               /// 1. Content must be present and one of restriction or extention\r
-               ///</remarks>\r
-               internal override int Compile(ValidationEventHandler h, XmlSchema schema)\r
-               {\r
-                       // If this is already compiled this time, simply skip.\r
-                       if (this.IsComplied (schema.CompilationId))\r
-                               return 0;\r
-\r
-                       if(Content == null)\r
-                       {\r
-                               error(h, "Content must be present in a simpleContent");\r
-                       }\r
-                       else\r
-                       {\r
-#if NET_2_0\r
-                               Content.Parent = this;\r
-#endif\r
-                               if(Content is XmlSchemaSimpleContentRestriction)\r
-                               {\r
-                                       XmlSchemaSimpleContentRestriction xscr = (XmlSchemaSimpleContentRestriction) Content;\r
-                                       errorCount += xscr.Compile(h, schema);\r
-                               }\r
-                               else if(Content is XmlSchemaSimpleContentExtension)\r
-                               {\r
-                                       XmlSchemaSimpleContentExtension xsce = (XmlSchemaSimpleContentExtension) Content;\r
-                                       errorCount += xsce.Compile(h, schema);\r
-                               }\r
-                               else\r
-                                       error(h,"simpleContent can't have any value other than restriction or extention");\r
-                       }\r
-                       \r
-                       XmlSchemaUtil.CompileID(Id,this, schema.IDCollection,h);\r
-                       this.CompilationId = schema.CompilationId;\r
-                       return errorCount;\r
-               }\r
-               \r
-               internal override int Validate(ValidationEventHandler h, XmlSchema schema)\r
-               {\r
-                       if (IsValidated (schema.ValidationId))\r
-                               return errorCount;\r
-\r
-                       errorCount += this.Content.Validate (h, schema);\r
-\r
-                       ValidationId = schema.ValidationId;\r
-                       return errorCount;\r
-               }\r
-               //<simpleContent \r
-               //  id = ID \r
-               //  {any attributes with non-schema namespace . . .}>\r
-               //  Content: (annotation?, (restriction | extension))\r
-               //</simpleContent>\r
-               internal static XmlSchemaSimpleContent Read(XmlSchemaReader reader, ValidationEventHandler h)\r
-               {\r
-                       XmlSchemaSimpleContent simple = new XmlSchemaSimpleContent();\r
-                       reader.MoveToElement();\r
-\r
-                       if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)\r
-                       {\r
-                               error(h,"Should not happen :1: XmlSchemaComplexContent.Read, name="+reader.Name,null);\r
-                               reader.SkipToEnd();\r
-                               return null;\r
-                       }\r
-\r
-                       simple.LineNumber = reader.LineNumber;\r
-                       simple.LinePosition = reader.LinePosition;\r
-                       simple.SourceUri = reader.BaseURI;\r
-\r
-                       while(reader.MoveToNextAttribute())\r
-                       {\r
-                               if(reader.Name == "id")\r
-                               {\r
-                                       simple.Id = reader.Value;\r
-                               }\r
-                               else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)\r
-                               {\r
-                                       error(h,reader.Name + " is not a valid attribute for simpleContent",null);\r
-                               }\r
-                               else\r
-                               {\r
-                                       XmlSchemaUtil.ReadUnhandledAttribute(reader,simple);\r
-                               }\r
-                       }\r
-                       \r
-                       reader.MoveToElement();\r
-                       if(reader.IsEmptyElement)\r
-                               return simple;\r
-                       //Content: (annotation?, (restriction | extension))\r
-                       int level = 1;\r
-                       while(reader.ReadNextElement())\r
-                       {\r
-                               if(reader.NodeType == XmlNodeType.EndElement)\r
-                               {\r
-                                       if(reader.LocalName != xmlname)\r
-                                               error(h,"Should not happen :2: XmlSchemaSimpleContent.Read, name="+reader.Name,null);\r
-                                       break;\r
-                               }\r
-                               if(level <= 1 && reader.LocalName == "annotation")\r
-                               {\r
-                                       level = 2; //Only one annotation\r
-                                       XmlSchemaAnnotation annotation = XmlSchemaAnnotation.Read(reader,h);\r
-                                       if(annotation != null)\r
-                                               simple.Annotation = annotation;\r
-                                       continue;\r
-                               }\r
-                               if(level <=2)\r
-                               {\r
-                                       if(reader.LocalName == "restriction")\r
-                                       {\r
-                                               level = 3;\r
-                                               XmlSchemaSimpleContentRestriction restriction = XmlSchemaSimpleContentRestriction.Read(reader,h);\r
-                                               if(restriction != null)\r
-                                                       simple.content = restriction;\r
-                                               continue;\r
-                                       }\r
-                                       if(reader.LocalName == "extension")\r
-                                       {\r
-                                               level = 3;\r
-                                               XmlSchemaSimpleContentExtension extension = XmlSchemaSimpleContentExtension.Read(reader,h);\r
-                                               if(extension != null)\r
-                                                       simple.content = extension;\r
-                                               continue;\r
-                                       }\r
-                               }\r
-                               reader.RaiseInvalidElementError();\r
-                       }\r
-                       return simple;\r
-               }\r
-\r
-       }\r
-}\r
+using System;
+using System.Xml.Serialization;
+using System.Xml;
+
+namespace System.Xml.Schema
+{
+       /// <summary>
+       /// Summary description for XmlSchemaSimpleContent.
+       /// </summary>
+       public class XmlSchemaSimpleContent : XmlSchemaContentModel
+       {
+               private XmlSchemaContent content;
+               const string xmlname = "simpleContent";
+               public XmlSchemaSimpleContent()
+               {
+               }
+
+               [XmlElement("restriction",typeof(XmlSchemaSimpleContentRestriction))]
+               [XmlElement("extension",typeof(XmlSchemaSimpleContentExtension))]
+               public override XmlSchemaContent Content 
+               {
+                       get{ return  content; } 
+                       set{ content = value; }
+               }
+
+               internal override void SetParent (XmlSchemaObject parent)
+               {
+                       base.SetParent (parent);
+                       if (Content != null)
+                               Content.SetParent (this);
+               }
+
+               ///<remarks>
+               /// 1. Content must be present and one of restriction or extention
+               ///</remarks>
+               internal override int Compile(ValidationEventHandler h, XmlSchema schema)
+               {
+                       // If this is already compiled this time, simply skip.
+                       if (CompilationId == schema.CompilationId)
+                               return 0;
+
+                       if(Content == null)
+                       {
+                               error(h, "Content must be present in a simpleContent");
+                       }
+                       else
+                       {
+                               if(Content is XmlSchemaSimpleContentRestriction)
+                               {
+                                       XmlSchemaSimpleContentRestriction xscr = (XmlSchemaSimpleContentRestriction) Content;
+                                       errorCount += xscr.Compile(h, schema);
+                               }
+                               else if(Content is XmlSchemaSimpleContentExtension)
+                               {
+                                       XmlSchemaSimpleContentExtension xsce = (XmlSchemaSimpleContentExtension) Content;
+                                       errorCount += xsce.Compile(h, schema);
+                               }
+                               else
+                                       error(h,"simpleContent can't have any value other than restriction or extention");
+                       }
+                       
+                       XmlSchemaUtil.CompileID(Id,this, schema.IDCollection,h);
+                       this.CompilationId = schema.CompilationId;
+                       return errorCount;
+               }
+               
+               internal override int Validate(ValidationEventHandler h, XmlSchema schema)
+               {
+                       if (IsValidated (schema.ValidationId))
+                               return errorCount;
+
+                       errorCount += this.Content.Validate (h, schema);
+
+                       ValidationId = schema.ValidationId;
+                       return errorCount;
+               }
+               //<simpleContent 
+               //  id = ID 
+               //  {any attributes with non-schema namespace . . .}>
+               //  Content: (annotation?, (restriction | extension))
+               //</simpleContent>
+               internal static XmlSchemaSimpleContent Read(XmlSchemaReader reader, ValidationEventHandler h)
+               {
+                       XmlSchemaSimpleContent simple = new XmlSchemaSimpleContent();
+                       reader.MoveToElement();
+
+                       if(reader.NamespaceURI != XmlSchema.Namespace || reader.LocalName != xmlname)
+                       {
+                               error(h,"Should not happen :1: XmlSchemaComplexContent.Read, name="+reader.Name,null);
+                               reader.SkipToEnd();
+                               return null;
+                       }
+
+                       simple.LineNumber = reader.LineNumber;
+                       simple.LinePosition = reader.LinePosition;
+                       simple.SourceUri = reader.BaseURI;
+
+                       while(reader.MoveToNextAttribute())
+                       {
+                               if(reader.Name == "id")
+                               {
+                                       simple.Id = reader.Value;
+                               }
+                               else if((reader.NamespaceURI == "" && reader.Name != "xmlns") || reader.NamespaceURI == XmlSchema.Namespace)
+                               {
+                                       error(h,reader.Name + " is not a valid attribute for simpleContent",null);
+                               }
+                               else
+                               {
+                                       XmlSchemaUtil.ReadUnhandledAttribute(reader,simple);
+                               }
+                       }
+                       
+                       reader.MoveToElement();
+                       if(reader.IsEmptyElement)
+                               return simple;
+                       //Content: (annotation?, (restriction | extension))
+                       int level = 1;
+                       while(reader.ReadNextElement())
+                       {
+                               if(reader.NodeType == XmlNodeType.EndElement)
+                               {
+                                       if(reader.LocalName != xmlname)
+                                               error(h,"Should not happen :2: XmlSchemaSimpleContent.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)
+                                               simple.Annotation = annotation;
+                                       continue;
+                               }
+                               if(level <=2)
+                               {
+                                       if(reader.LocalName == "restriction")
+                                       {
+                                               level = 3;
+                                               XmlSchemaSimpleContentRestriction restriction = XmlSchemaSimpleContentRestriction.Read(reader,h);
+                                               if(restriction != null)
+                                                       simple.content = restriction;
+                                               continue;
+                                       }
+                                       if(reader.LocalName == "extension")
+                                       {
+                                               level = 3;
+                                               XmlSchemaSimpleContentExtension extension = XmlSchemaSimpleContentExtension.Read(reader,h);
+                                               if(extension != null)
+                                                       simple.content = extension;
+                                               continue;
+                                       }
+                               }
+                               reader.RaiseInvalidElementError();
+                       }
+                       return simple;
+               }
+
+       }
+}