SvgAttributeAttribute.cs 1.51 KB
Newer Older
davescriven's avatar
davescriven committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;

namespace Svg
{
    public class SvgAttributeAttribute : System.Attribute
    {
        private const string SVG_NAMESPACE = "http://www.w3.org/2000/svg";
        private string _name;
        private string _namespace;

        public override object TypeId
        {
            get
            {
                return base.TypeId;
            }
        }

        public override bool Match(object obj)
        {
            SvgAttributeAttribute indicator = obj as SvgAttributeAttribute;

            if (indicator == null)
                return false;

            // Always match if either value is String.Empty (wildcard)
            if (indicator.Name == String.Empty)
                return false;

            return String.Compare(indicator.Name, this.Name) == 0;
        }

        public string Name
        {
            get { return this._name; }
        }

        public string NameSpace
        {
            get { return this._namespace; }
        }

        internal SvgAttributeAttribute()
        {
            this._name = String.Empty;
        }

        internal SvgAttributeAttribute(string name)
        {
            this._name = name;
            this._namespace = SVG_NAMESPACE;
        }

        public SvgAttributeAttribute(string name, string nameSpace)
        {
            this._name = name;
            this._namespace = nameSpace;
        }
    }
}