2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / XmlSchemas.cs
index bfb7e670e4324b1b15f3551f9cdc4a2ac6a36e36..3e85946d13e1fa7bdb35842736c2750f96b1d767 100644 (file)
@@ -6,6 +6,27 @@
 //\r
 // Copyright (C) Tim Coleman, 2002\r
 //\r
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
 \r
 using System.Collections;\r
 using System.Xml.Schema;\r
@@ -43,6 +64,26 @@ namespace System.Xml.Serialization {
                public XmlSchema this [string ns] {\r
                        get { return (XmlSchema) table[ns!=null?ns:""]; }\r
                }\r
+               \r
+#if NET_2_0\r
+               [MonoTODO]\r
+               public bool IsCompiled \r
+               {\r
+                       get { throw new NotImplementedException (); }\r
+               }\r
+               \r
+               [MonoTODO]\r
+               public ICollection Schemas \r
+               {\r
+                       get { throw new NotImplementedException (); }\r
+               }\r
+               \r
+               [MonoTODO]\r
+               public void Compile (ValidationEventHandler handler, bool fullCompile)\r
+               {\r
+               }\r
+#endif\r
+\r
 \r
                #endregion // Properties\r
 \r
@@ -74,8 +115,25 @@ namespace System.Xml.Serialization {
                {\r
                        XmlSchema schema = table [name.Namespace] as XmlSchema;\r
                        if (schema == null)\r
+                       {\r
+                               // An schema may import other schemas. An imported schema would\r
+                               // not be in the table, but its elements (although from another\r
+                               // namespace) would be in the schema that imported it. So, we\r
+                               // need know to check for every schema in the table.\r
+                               \r
+                               foreach (XmlSchema s in this)\r
+                               {\r
+                                       object ob = Find (s, name, type);\r
+                                       if (ob != null) return ob;\r
+                               }\r
                                return null;\r
+                       }\r
+                       else\r
+                               return Find (schema, name, type);\r
+               }\r
 \r
+               object Find (XmlSchema schema, XmlQualifiedName name, Type type)\r
+               {\r
                        if (!schema.IsCompiled) {\r
                                schema.Compile (null);\r
                        }\r