This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.Management / System.Management / QualifierData.cs
1 //
2 // System.Management.QualifierData
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
9
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 namespace System.Management
31 {
32         public class QualifierData
33         {
34                 internal QualifierData ()
35                 {
36                 }
37
38                 public bool IsAmended {
39                         [MonoTODO]
40                         get {
41                                 throw new NotImplementedException ();
42                         }
43                         [MonoTODO]
44                         set {
45                                 throw new NotImplementedException ();
46                         }
47                 }
48
49                 public bool IsLocal {
50                         [MonoTODO]
51                         get {
52                                 throw new NotImplementedException ();
53                         }
54                 }
55
56                 public bool IsOverridable {
57                         [MonoTODO]
58                         get {
59                                 throw new NotImplementedException ();
60                         }
61                         [MonoTODO]
62                         set {
63                                 throw new NotImplementedException ();
64                         }
65                 }
66
67                 public string Name {
68                         [MonoTODO]
69                         get {
70                                 throw new NotImplementedException ();
71                         }
72                 }
73
74                 public bool PropagatesToInstance {
75                         [MonoTODO]
76                         get {
77                                 throw new NotImplementedException ();
78                         }
79                         [MonoTODO]
80                         set {
81                                 throw new NotImplementedException ();
82                         }
83                 }
84
85                 public bool PropagatesToSubclass {
86                         [MonoTODO]
87                         get {
88                                 throw new NotImplementedException ();
89                         }
90                         [MonoTODO]
91                         set {
92                                 throw new NotImplementedException ();
93                         }
94                 }
95
96                 public object Value {
97                         [MonoTODO]
98                         get {
99                                 throw new NotImplementedException ();
100                         }
101                         [MonoTODO]
102                         set {
103                                 throw new NotImplementedException ();
104                         }
105                 }
106         }
107 }
108