2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[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 #if NET_2_0
34
35 using System.Collections;
36 using System.Xml;
37
38 namespace System.Xml.Query 
39 {
40         public sealed class XmlArgumentList
41         {
42                 #region Fields
43
44                 Hashtable extensionObjects;
45                 Hashtable parameters;
46
47                 #endregion // Fields
48
49                 #region Constructors
50
51                 [MonoTODO]
52                 public XmlArgumentList ()
53                 {
54                         extensionObjects = new Hashtable ();
55                         parameters = new Hashtable ();
56                 }
57
58                 #endregion // Constructors
59
60                 #region Methods
61
62                 [MonoTODO ("Confirm name conflicts")]
63                 public void AddExtensionObject (string namespaceUri, object value)
64                 {
65                         extensionObjects.Add (namespaceUri, value);
66                 }
67
68                 [MonoTODO ("Confirm name conflicts")]
69                 public void AddParameter (string localName,     string namespaceUri, object value)
70                 {
71                         parameters.Add (new XmlQualifiedName (localName, namespaceUri), value);
72                 }
73
74                 public void ClearExtensionObjects ()
75                 {
76                         extensionObjects.Clear ();
77                 }
78
79                 public void ClearParameters ()
80                 {
81                         parameters.Clear ();
82                 }
83
84                 public object GetExtensionObject (string namespaceUri)
85                 {
86                         return extensionObjects [namespaceUri];
87                 }
88
89                 [MonoTODO ("Performance")]
90                 public object GetParameter (string localName, string namespaceUri)
91                 {
92                         return parameters [new XmlQualifiedName (localName, namespaceUri)];
93                 }
94
95                 [MonoTODO]
96                 public void RemoveExtensionObject (string namespaceUri)
97                 {
98                         extensionObjects.Remove (namespaceUri);
99                 }
100
101                 [MonoTODO]
102                 public void RemoveParameter (string localName, string namespaceUri)
103                 {
104                         parameters.Remove (new XmlQualifiedName (localName, namespaceUri));
105                 }
106
107                 [MonoTODO]
108                 public void SetExtensionObject (string namespaceUri, object value)
109                 {
110                         extensionObjects [namespaceUri] = value;
111                 }
112
113                 [MonoTODO]
114                 public void SetParameter (string localName, string namespaceUri, object value)
115                 {
116                         parameters [new XmlQualifiedName (localName, namespaceUri)] = value;
117                 }
118
119                 #endregion // Methods
120         }
121 }
122
123 #endif // NET_2_0