~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.XmlEditor/MonoDevelop.XmlEditor.XPath/XPathQueryPadOptions.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// MonoDevelop XML Editor
 
3
//
 
4
// Copyright (C) 2006-2007 Matthew Ward
 
5
//
 
6
// Permission is hereby granted, free of charge, to any person obtaining
 
7
// a copy of this software and associated documentation files (the
 
8
// "Software"), to deal in the Software without restriction, including
 
9
// without limitation the rights to use, copy, modify, merge, publish,
 
10
// distribute, sublicense, and/or sell copies of the Software, and to
 
11
// permit persons to whom the Software is furnished to do so, subject to
 
12
// the following conditions:
 
13
// 
 
14
// The above copyright notice and this permission notice shall be
 
15
// included in all copies or substantial portions of the Software.
 
16
// 
 
17
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
18
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
19
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
20
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
21
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
22
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
23
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
24
 
 
25
/*
 
26
 
 
27
using MonoDevelop.Core;
 
28
using System;
 
29
using System.Xml;
 
30
 
 
31
namespace MonoDevelop.XmlEditor
 
32
{
 
33
        /// <summary>
 
34
        /// The XPath Query Pad options.
 
35
        /// </summary>
 
36
        public class XPathQueryPadOptions
 
37
        {
 
38
                public const string OptionsProperty = "XPathQueryPad.Options";
 
39
                public const string NamespacesProperty = "Namespaces";
 
40
                public const string LastXPathQueryProperty = "LastXPathQuery";
 
41
                public const string XPathHistoryProperty = "XPathQueryHistory";
 
42
                static Properties properties;
 
43
 
 
44
                static XPathQueryPadOptions()
 
45
                {
 
46
                        properties = PropertyService.Get(OptionsProperty, new Properties());
 
47
                }
 
48
 
 
49
                static Properties Properties {
 
50
                        get {
 
51
                                return properties;
 
52
                        }
 
53
                }
 
54
                
 
55
                /// <summary>
 
56
                /// The last xpath query entered in the XPath Query Pad's
 
57
                /// combo box.
 
58
                /// </summary>
 
59
                public static string LastXPathQuery {
 
60
                        get {
 
61
                                return Properties.Get(LastXPathQueryProperty, String.Empty);
 
62
                        }
 
63
                        set {
 
64
                                Properties.Set(LastXPathQueryProperty, value);
 
65
                        }
 
66
                }
 
67
                
 
68
                /// <summary>
 
69
                /// Gets or sets the xpath history.
 
70
                /// </summary>
 
71
                public static XPathHistoryList XPathHistory {
 
72
                        get {
 
73
                                return (XPathHistoryList)Properties.Get(XPathHistoryProperty, new XPathHistoryList());
 
74
                        }
 
75
                        set {
 
76
                                Properties.Set(XPathHistoryProperty, value);
 
77
                        }
 
78
                }
 
79
                
 
80
                /// <summary>
 
81
                /// Gets or sets the xpath namespaces used.
 
82
                /// </summary>
 
83
                public static XPathNamespaceList Namespaces {
 
84
                        get {
 
85
                                return (XPathNamespaceList)Properties.Get(NamespacesProperty, new XPathNamespaceList());
 
86
                        }
 
87
                        set {
 
88
                                Properties.Set(NamespacesProperty, value);
 
89
                        }
 
90
                }
 
91
        }
 
92
}
 
93
 
 
94
*/