fix for different results message
[mono.git] / mcs / class / System.XML / System.Xml.Xsl / XsltContext.cs
1 // System.Xml.Xsl.XsltContext\r
2 //\r
3 // Author: Tim Coleman <tim@timcoleman.com>\r
4 // (C) Copyright 2002 Tim Coleman\r
5
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 \r
27 using System;\r
28 using System.Xml;\r
29 using System.Xml.XPath;\r
30 \r
31 namespace System.Xml.Xsl\r
32 {\r
33         public abstract class XsltContext : XmlNamespaceManager\r
34         {\r
35                 #region Constructors\r
36                 public XsltContext ()
37                         : base (new NameTable ())
38                 {
39                 }\r
40 \r
41                 public XsltContext (NameTable table)\r
42                         : base (table)\r
43                 {\r
44                 }\r
45 \r
46                 #endregion\r
47 \r
48                 #region Properties\r
49 \r
50                 public abstract bool Whitespace { get; }\r
51                 public abstract bool PreserveWhitespace (XPathNavigator nav);\r
52 \r
53                 #endregion\r
54 \r
55                 #region Methods\r
56 \r
57                 public abstract int CompareDocument (string baseUri, string nextbaseUri);\r
58                 public abstract IXsltContextFunction ResolveFunction (string prefix, string name, XPathResultType [] ArgTypes);\r
59                 public abstract IXsltContextVariable ResolveVariable (string prefix, string name);\r
60 \r
61                 #endregion
62                 
63                 #region XSLT Internal Calls
64                 
65                 internal virtual IXsltContextVariable ResolveVariable (XmlQualifiedName name)
66                 {
67                         throw new InvalidOperationException ("somehow you got into the internals of xslt!?");
68                 }
69                 
70                 internal virtual IXsltContextFunction ResolveFunction (XmlQualifiedName name, XPathResultType [] ArgTypes)
71                 {
72                         throw new InvalidOperationException ("somehow you got into the internals of xslt!?");
73                 }
74                 #endregion\r
75         }
76         
77         // The static XSLT context, will try to simplify what it can
78         internal interface IStaticXsltContext
79         {
80                 Expression TryGetVariable (string nm);
81                 Expression TryGetFunction (XmlQualifiedName nm, FunctionArguments args);
82                 XmlQualifiedName LookupQName (string s);
83                 string LookupNamespace (string prefix);
84         }\r
85 }\r