* ToolTask.cs (ProcessOuputTool): Move logging of tool
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / XmlDataSourceNodeDescriptor.cs
1 //
2 // System.Web.UI.WebControls.XmlDataSourceNodeDescriptor
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 using System;
33 using System.Collections;
34 using System.ComponentModel;
35 using System.Xml;
36 using System.Xml.XPath;
37 using System.Xml.Schema;
38 using AC = System.ComponentModel.AttributeCollection;
39
40 namespace System.Web.UI.WebControls
41 {
42         internal class XmlDataSourceNodeDescriptor: ICustomTypeDescriptor, IXPathNavigable
43         {
44                 XmlNode node;
45                 
46                 public XmlDataSourceNodeDescriptor (XmlNode node)
47                 {
48                         this.node = node;
49                 }
50                 
51                 public XmlNode Node {
52                         get { return node; }
53                 }
54                 
55                 public AC GetAttributes()
56                 {
57                         return AC.Empty;
58                 }
59
60                 public string GetClassName()
61                 {
62                         return "XmlDataSourceNodeDescriptor";
63                 }
64
65                 public string GetComponentName()
66                 {
67                         return null;
68                 }
69
70                 public TypeConverter GetConverter()
71                 {
72                         return null;
73                 }
74
75                 public EventDescriptor GetDefaultEvent()
76                 {
77                         return null;
78                 }
79
80                 public PropertyDescriptor GetDefaultProperty()
81                 {
82                         return null;
83                 }
84
85                 public object GetEditor(Type editorBaseType)
86                 {
87                         return null;
88                 }
89
90                 public EventDescriptorCollection GetEvents()
91                 {
92                         return null;
93                 }
94
95                 public EventDescriptorCollection GetEvents(Attribute[] arr)
96                 {
97                         return null;
98                 }
99
100                 public PropertyDescriptorCollection GetProperties()
101                 {
102                         if (node.Attributes != null) {
103                                 PropertyDescriptor[] props = new PropertyDescriptor [node.Attributes.Count];
104                                 for (int n=0; n<props.Length; n++)
105                                         props [n] = new XmlDataSourcePropertyDescriptor (node.Attributes [n].Name, node.IsReadOnly);
106                                 return new PropertyDescriptorCollection (props);
107                         } else
108                                 return PropertyDescriptorCollection.Empty;
109                 }
110
111                 public PropertyDescriptorCollection GetProperties(Attribute[] arr)
112                 {
113                         return GetProperties ();
114                 }
115
116                 public object GetPropertyOwner (PropertyDescriptor pd)
117                 {
118                         if (pd is XmlDataSourcePropertyDescriptor)
119                                 return this;
120                         return null;
121                 }
122
123                 public XPathNavigator CreateNavigator ()
124                 {
125                         return node.CreateNavigator();
126                 }
127         }
128 }
129 #endif
130