Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MemberDescriptor.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2481bdffa7cf78edec5bb901ef630f3ea5002698 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//
// System.ComponentModel.MemberDescriptor.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System.ComponentModel {

	public abstract class MemberDescriptor {
		string name;
		Attribute [] attrs;
		
		protected MemberDescriptor (string name, Attribute [] attrs)
		{
			this.name = name;
			this.attrs = attrs;
		}

		protected MemberDescriptor (MemberDescriptor reference, Attribute [] attrs)
		{
			name = reference.name;
			this.attrs = attrs;
		}

		protected MemberDescriptor (string name)
		{
			this.name = name;
		}

		protected MemberDescriptor (MemberDescriptor reference)
		{
			name = reference.name;
			attrs = reference.attrs;
		}

		protected virtual Attribute [] AttributeArray {
			get {
				return attrs;
			}

			set {
				attrs = value;
			}
		}

		// FIXME: Implement Attributes property
		[MonoTODO ("Implement Attributes property too")]
		public virtual string Category {
			get {
				foreach (Attribute attr in attrs){



					if (attr is CategoryAttribute){
						return ((CategoryAttribute) attr).Category;
					}
				}
				return "Misc";
			}
		}

		public virtual string Description {
			get {
				foreach (Attribute attr in attrs){
					if (attr is DescriptionAttribute)
						return ((DescriptionAttribute) attr).Description;
				}

				return "";
			}
		}

		public virtual bool DesignTimeOnly {
			get {
				foreach (Attribute attr in attrs){
					if (attr is DesignOnlyAttribute)
						return ((DesignOnlyAttribute) attr).IsDesignOnly;
				}

				return false;
			}
		}

		//
		// FIXME: Is there any difference between DisplayName and Name?
		//
		[MonoTODO ("Does this diff from Name ?")]
		public virtual string DisplayName {
			get {
				return name;
			}
		}

		public virtual string Name {
			get {
				return name;
			}
		}

		public virtual bool IsBrowsable {
			get {
				foreach (Attribute attr in attrs){
					if (attr is BrowsableAttribute)
						return ((BrowsableAttribute) attr).Browsable;
				}

				return false;
			}
		}

		protected virtual int NameHashCode {
			get {
				return name.GetHashCode ();
			}
		}
	}
}