New test.
[mono.git] / mcs / class / corlib / System.Diagnostics / DebuggerVisualizerAttribute.cs
1 //
2 // System.Diagnostics.DebuggerVisualizerAttribute.cs
3 //
4 // Author:
5 //   Chris Toshok (toshok@novell.com)
6 //
7
8 //
9 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32
33 namespace System.Diagnostics {
34
35         [AttributeUsageAttribute(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Assembly, AllowMultiple=true)]
36 #if NET_2_0
37         public sealed class DebuggerVisualizerAttribute : Attribute
38 #else
39         internal sealed class DebuggerVisualizerAttribute : Attribute
40 #endif
41         {
42                 public DebuggerVisualizerAttribute(string visualizerSourceName) {
43                         this.visualizerSourceName = visualizerSourceName;
44                 }
45
46                 public DebuggerVisualizerAttribute(Type visualizerSource) {
47                         this.visualizerSource = visualizerSource;
48                         this.visualizerSourceName = visualizerSource.AssemblyQualifiedName;
49                 }
50
51                 public DebuggerVisualizerAttribute(string visualizerName, string visualizerSourceName) {
52                         this.visualizerName = visualizerName;
53                         this.visualizerSourceName = visualizerSourceName;
54                 }
55
56                 public DebuggerVisualizerAttribute(Type visualizer, string visualizerSourceName) {
57                         this.visualizerSourceName = visualizerSourceName;
58                         this.visualizer = visualizer;
59                         this.visualizerName = visualizer.AssemblyQualifiedName;
60                 }
61
62                 public DebuggerVisualizerAttribute(Type visualizer, Type visualizerSource) {
63                         this.visualizer = visualizer;
64                         this.visualizerName = visualizer.AssemblyQualifiedName;
65                         this.visualizerSource = visualizerSource;
66                         this.visualizerSourceName = visualizerSource.AssemblyQualifiedName;
67                 }
68
69                 public string Description {
70                         get {
71                                 return description;
72                         }
73                         set {
74                                 description = value;
75                         }
76                 }
77
78                 public Type Target {
79                         get {
80                                 return target;
81                         }
82                         set {
83                                 target = value;
84                                 targetTypeName = target.AssemblyQualifiedName;
85                         }
86                 }
87
88                 public string TargetTypeName {
89                         get {
90                                 return targetTypeName;
91                         }
92                         set {
93                                 targetTypeName = value;
94                         }
95                 }
96
97                 // Debugged program-side type
98                 public string VisualizerObjectSourceTypeName {
99                         get {
100                                 return visualizerSourceName;
101                         }
102                 }
103
104                 // Debugger-side type
105                 public string VisualizerTypeName {
106                         get {
107                                 return visualizerName;
108                         }
109                 }
110
111                 string description;
112                 string visualizerSourceName;
113                 Type visualizerSource;
114                 string visualizerName;
115                 Type visualizer;
116
117                 string targetTypeName;
118                 Type target;
119         }
120
121 }