Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / Mono.Xml.Ext / Mono.Xml.XPath2 / XmlArgumentList.cs
1 //
2 // System.Xml.Query.XmlArgumentList
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //   Atsushi Enomoto (atsushi@ximian.com)
7 //
8 // Copyright (C) Tim Coleman, 2003
9 // Copyright (C) Novell Inc, 2004
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33
34 using System.Collections;
35 using System.Xml;
36
37 namespace System.Xml.Query 
38 {
39         public sealed class XmlArgumentList
40         {
41                 #region Fields
42
43                 Hashtable extensionObjects;
44                 Hashtable parameters;
45
46                 #endregion // Fields
47
48                 #region Constructors
49
50                 [MonoTODO]
51                 public XmlArgumentList ()
52                 {
53                         extensionObjects = new Hashtable ();
54                         parameters = new Hashtable ();
55                 }
56
57                 #endregion // Constructors
58
59                 #region Methods
60
61                 [MonoTODO ("Confirm name conflicts")]
62                 public void AddExtensionObject (string namespaceUri, object value)
63                 {
64                         extensionObjects.Add (namespaceUri, value);
65                 }
66
67                 [MonoTODO ("Confirm name conflicts")]
68                 public void AddParameter (string localName,     string namespaceUri, object value)
69                 {
70                         parameters.Add (new XmlQualifiedName (localName, namespaceUri), value);
71                 }
72
73                 public void ClearExtensionObjects ()
74                 {
75                         extensionObjects.Clear ();
76                 }
77
78                 public void ClearParameters ()
79                 {
80                         parameters.Clear ();
81                 }
82
83                 public object GetExtensionObject (string namespaceUri)
84                 {
85                         return extensionObjects [namespaceUri];
86                 }
87
88                 [MonoTODO ("Performance")]
89                 public object GetParameter (string localName, string namespaceUri)
90                 {
91                         return parameters [new XmlQualifiedName (localName, namespaceUri)];
92                 }
93
94                 [MonoTODO]
95                 public void RemoveExtensionObject (string namespaceUri)
96                 {
97                         extensionObjects.Remove (namespaceUri);
98                 }
99
100                 [MonoTODO]
101                 public void RemoveParameter (string localName, string namespaceUri)
102                 {
103                         parameters.Remove (new XmlQualifiedName (localName, namespaceUri));
104                 }
105
106                 [MonoTODO]
107                 public void SetExtensionObject (string namespaceUri, object value)
108                 {
109                         extensionObjects [namespaceUri] = value;
110                 }
111
112                 [MonoTODO]
113                 public void SetParameter (string localName, string namespaceUri, object value)
114                 {
115                         parameters [new XmlQualifiedName (localName, namespaceUri)] = value;
116                 }
117
118                 #endregion // Methods
119         }
120 }
121