2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.XML / System.Xml.Schema / XmlSchemaObjectTable.cs
blobac3c1d5da4d96dd5656fc98c8bc998c0c7cf1845
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.Collections;
26 using System.Collections.Specialized;
27 using System.Xml;
29 namespace System.Xml.Schema
31 /// <summary>
32 /// Summary description for XmlSchemaObjectTable.
33 /// </summary>
34 public class XmlSchemaObjectTable
36 // private Hashtable table;
37 private HybridDictionary table;
39 internal XmlSchemaObjectTable ()
41 // table = new Hashtable();
42 table = new HybridDictionary ();
44 public int Count
46 get{ return table.Count; }
48 public XmlSchemaObject this [XmlQualifiedName name]
50 get{ return (XmlSchemaObject) table [name]; }
52 public ICollection Names
54 get{ return table.Keys; }
56 public ICollection Values
58 get{ return table.Values; }
61 public bool Contains (XmlQualifiedName name)
63 return table.Contains (name);
65 public IDictionaryEnumerator GetEnumerator ()
67 return new XmlSchemaObjectTableEnumerator (this);
70 internal void Add (XmlQualifiedName name, XmlSchemaObject value)
72 table [name] = value;
75 internal void Clear ()
77 table.Clear ();
80 internal void Set (XmlQualifiedName name, XmlSchemaObject value)
82 table [name] = value;
85 internal class XmlSchemaObjectTableEnumerator : IDictionaryEnumerator
87 private IDictionaryEnumerator xenum;
88 IEnumerable tmp;
89 internal XmlSchemaObjectTableEnumerator (XmlSchemaObjectTable table)
91 tmp = (IEnumerable) table.table;
92 xenum = (IDictionaryEnumerator) tmp.GetEnumerator ();
94 // Properties
95 public XmlSchemaObject Current {
96 get {
97 return (XmlSchemaObject) xenum.Value;
100 public DictionaryEntry Entry {
101 get { return xenum.Entry; }
103 public XmlQualifiedName Key {
104 get { return (XmlQualifiedName) xenum.Key; }
106 public XmlSchemaObject Value {
107 get { return (XmlSchemaObject) xenum.Value; }
109 // Methods
110 public bool MoveNext()
112 return xenum.MoveNext();
115 //Explicit Interface implementation
116 bool IEnumerator.MoveNext()
118 return xenum.MoveNext();
120 void IEnumerator.Reset()
122 xenum.Reset();
124 object IEnumerator.Current
126 get { return xenum.Entry; }
128 DictionaryEntry IDictionaryEnumerator.Entry {
129 get { return xenum.Entry; }
131 object IDictionaryEnumerator.Key {
132 get { return (XmlQualifiedName) xenum.Key; }
134 object IDictionaryEnumerator.Value {
135 get { return (XmlSchemaObject) xenum.Value; }