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

« back to all changes in this revision

Viewing changes to src/addins/AspNet/MonoDevelop.AspNet/MonoDevelop.AspNet.Parser.Dom/DirectiveNode.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
 
// DirectiveNode.cs: Represents a directive in an ASP.NET document tree
3
 
//
4
 
// Authors:
5
 
//   Michael Hutchinson <m.j.hutchinson@gmail.com>
6
 
//
7
 
// Copyright (C) 2006 Michael Hutchinson
8
 
//
9
 
//
10
 
// This source code is licenced under The MIT License:
11
 
//
12
 
// Permission is hereby granted, free of charge, to any person obtaining
13
 
// a copy of this software and associated documentation files (the
14
 
// "Software"), to deal in the Software without restriction, including
15
 
// without limitation the rights to use, copy, modify, merge, publish,
16
 
// distribute, sublicense, and/or sell copies of the Software, and to
17
 
// permit persons to whom the Software is furnished to do so, subject to
18
 
// the following conditions:
19
 
// 
20
 
// The above copyright notice and this permission notice shall be
21
 
// included in all copies or substantial portions of the Software.
22
 
// 
23
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24
 
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25
 
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26
 
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27
 
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28
 
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29
 
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30
 
//
31
 
 
32
 
using System;
33
 
using System.Collections;
34
 
 
35
 
namespace MonoDevelop.AspNet.Parser.Dom
36
 
{
37
 
        public class DirectiveNode : Node
38
 
        {
39
 
                string name;
40
 
                TagAttributes attributes;
41
 
                
42
 
                public DirectiveNode (ILocation location, string name, TagAttributes attributes)
43
 
                        : base (location)
44
 
                {
45
 
                        this.name = name;
46
 
                        this.attributes = attributes;
47
 
                        
48
 
                        //FIXME: workaround for weird parser MasterPage bug
49
 
                        if (string.IsNullOrEmpty(name))
50
 
                                foreach (string key in attributes.Keys)
51
 
                                        if (key.ToLower() == "master")
52
 
                                                this.name = "Master";
53
 
                }
54
 
                
55
 
                public override void AcceptVisit (Visitor visitor)
56
 
                {
57
 
                        visitor.Visit (this);
58
 
                }
59
 
                
60
 
                public string Name {
61
 
                        get {return name; }
62
 
                }
63
 
                
64
 
                public TagAttributes Attributes {
65
 
                        get { return attributes; }
66
 
                }
67
 
                
68
 
                public override string ToString ()
69
 
                {
70
 
                        return string.Format ("[DirectiveNode Name='{0}' Attributes='{1}' Location='{2}']", Name, Attributes, Location);
71
 
                }
72
 
 
73
 
        }
74
 
}