**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Xml.Ext / Mono.Xml.XPath / DTMXPathNode.cs
blob11d22e294773b13682b44bbcdf8141843c217daa
1 //
2 // Mono.Xml.XPath.DTMXPathNode.cs
3 //
4 // Author:
5 // Atsushi Enomoto (ginga@kit.hi-ho.ne.jp)
6 //
7 // (C) 2003 Atsushi Enomoto
8 //
9 // These classes represent each node of DTMXPathNavigator.
11 //#define DTM_CLASS
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 //
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 //
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34 using System;
35 using System.Xml.XPath;
37 namespace Mono.Xml.XPath
39 #if OUTSIDE_SYSTEM_XML
40 public
41 #else
42 internal
43 #endif
44 #if DTM_CLASS
45 class DTMXPathLinkedNode
46 #else
47 struct DTMXPathLinkedNode
48 #endif
50 public int FirstChild;
51 public int Parent;
52 public int PreviousSibling;
53 public int NextSibling;
54 public int FirstAttribute;
55 public int FirstNamespace;
56 public int Depth;
57 public XPathNodeType NodeType;
58 public string BaseURI;
59 public bool IsEmptyElement;
60 public string LocalName;
61 public string NamespaceURI;
62 public string Prefix;
63 public string Value;
64 public string XmlLang;
65 public int LineNumber;
66 public int LinePosition;
69 #if OUTSIDE_SYSTEM_XML
70 public
71 #else
72 internal
73 #endif
74 #if DTM_CLASS
75 class DTMXPathAttributeNode
76 #else
77 struct DTMXPathAttributeNode
78 #endif
80 public int OwnerElement;
81 public int NextAttribute;
82 public string LocalName;
83 public string NamespaceURI;
84 public string Prefix;
85 public string Value;
86 public object SchemaType;
87 public int LineNumber;
88 public int LinePosition;
91 #if OUTSIDE_SYSTEM_XML
92 public
93 #else
94 internal
95 #endif
96 #if DTM_CLASS
97 class DTMXPathNamespaceNode
98 #else
99 struct DTMXPathNamespaceNode
100 #endif
102 public int DeclaredElement;
103 public int NextNamespace;
104 public string Name;
105 public string Namespace;