(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaObjectTable.cs
blobf4db39d45f032a1b0aa5044b43cca23a3f5a6937
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 XmlSchemaObjectTable table;
90 internal XmlSchemaObjectTableEnumerator (XmlSchemaObjectTable table)
92 this.table = table;
93 tmp = (IEnumerable) table.table;
94 xenum = (IDictionaryEnumerator) tmp.GetEnumerator ();
96 // Properties
97 public XmlSchemaObject Current {
98 get {
99 return (XmlSchemaObject) xenum.Value;
102 public DictionaryEntry Entry {
103 get { return xenum.Entry; }
105 public XmlQualifiedName Key {
106 get { return (XmlQualifiedName) xenum.Key; }
108 public XmlSchemaObject Value {
109 get { return (XmlSchemaObject) xenum.Value; }
111 // Methods
112 public bool MoveNext()
114 return xenum.MoveNext();
117 //Explicit Interface implementation
118 bool IEnumerator.MoveNext()
120 return xenum.MoveNext();
122 void IEnumerator.Reset()
124 xenum.Reset();
126 object IEnumerator.Current
128 get { return xenum.Entry; }
130 DictionaryEntry IDictionaryEnumerator.Entry {
131 get { return xenum.Entry; }
133 object IDictionaryEnumerator.Key {
134 get { return (XmlQualifiedName) xenum.Key; }
136 object IDictionaryEnumerator.Value {
137 get { return (XmlSchemaObject) xenum.Value; }