svn path=/trunk/mcs/; revision=104772
[mono.git] / mcs / class / corlib / System.Reflection.Emit / FieldOnTypeBuilderInst.cs
1 //
2 // System.Reflection.Emit/FieldOnTypeBuilderInst.cs
3 //
4 // Author:
5 //   Zoltan Varga (vargaz@gmail.com)
6 //
7 //
8 // Copyright (C) 2008 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Globalization;
32 using System.Reflection;
33
34 #if NET_2_0
35
36 namespace System.Reflection.Emit
37 {
38         /*
39          * This class represents a field of an instantiation of a generic type builder.
40          */
41         internal class FieldOnTypeBuilderInst : FieldInfo
42         {
43                 #region Keep in sync with object-internals.h
44                 MonoGenericClass instantiation;
45                 FieldBuilder fb;
46                 #endregion
47
48                 public FieldOnTypeBuilderInst (MonoGenericClass instantiation, FieldBuilder fb) {
49                         this.instantiation = instantiation;
50                         this.fb = fb;
51                 }
52
53                 //
54                 // MemberInfo members
55                 //
56                 
57                 public override Type DeclaringType {
58                         get {
59                                 return instantiation;
60                         }
61                 }
62
63                 public override string Name {
64                         get {
65                                 return fb.Name;
66                         }
67                 }
68
69                 public override Type ReflectedType {
70                         get {
71                                 return instantiation;
72                         }
73                 }
74
75                 public override bool IsDefined (Type attributeType, bool inherit) {
76                         throw new NotSupportedException ();
77                 }
78
79                 public override object [] GetCustomAttributes (bool inherit) {
80                         throw new NotSupportedException ();
81                 }
82
83                 public override object [] GetCustomAttributes (Type attributeType, bool inherit) {
84                         throw new NotSupportedException ();
85                 }
86
87                 //
88                 // FieldInfo members
89                 //
90
91                 public override FieldAttributes Attributes {
92                         get {
93                                 return fb.Attributes;
94                         }
95                 }
96
97                 public override RuntimeFieldHandle FieldHandle {
98                         get {
99                                 throw new NotSupportedException ();
100                         }
101                 }
102
103                 public override Type FieldType {
104                         get {
105                                 // FIXME:
106                                 throw new NotImplementedException ();
107                         }
108                 }
109
110                 public override object GetValue(object obj) {
111                         throw new NotSupportedException ();
112                 }
113
114                 public override void SetValue (object obj, object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) {
115                         throw new NotSupportedException ();
116                 }
117         }
118 }
119
120 #endif