**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Data.ObjectSpaces / System.Data.ObjectSpaces.Schema / SchemaMember.cs
blob20a597a7789094d01dde2c6eaa14d4c04a23c0fa
1 //
2 // System.Data.ObjectSpaces.Schema.SchemaMember.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
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.
31 #if NET_2_0
33 using System.Data.Mapping;
34 using System.Reflection;
36 namespace System.Data.ObjectSpaces.Schema {
37 public class SchemaMember : IDomainField
39 #region Fields
41 string alias;
42 bool isHidden;
43 bool isKey;
44 bool isLazyLoad;
45 KeyGenerator keyGenerator;
46 string name;
48 #endregion // Fields
50 #region Constructors
52 [MonoTODO]
53 public SchemaMember ()
57 [MonoTODO]
58 public SchemaMember (string name)
60 Name = name;
63 [MonoTODO]
64 public SchemaMember (string name, bool key)
65 : this (name)
67 IsKey = key;
70 #endregion // Constructors
72 #region Properties
74 public string Alias {
75 get { return alias; }
76 set { alias = value; }
79 [MonoTODO]
80 public SchemaClass DeclaringSchemaClass {
81 get { throw new NotImplementedException (); }
84 [MonoTODO]
85 public ExtendedPropertyCollection ExtendedProperties {
86 get { throw new NotImplementedException (); }
89 [MonoTODO]
90 IDomainStructure IDomainField.DomainStructure {
91 get { throw new NotImplementedException (); }
94 public bool IsHidden {
95 get { return isHidden; }
96 set { isHidden = value; }
99 public bool IsKey {
100 get { return isKey; }
101 set { isKey = value; }
104 public bool IsLazyLoad {
105 get { return isLazyLoad; }
106 set { isLazyLoad = value; }
109 public KeyGenerator KeyGenerator {
110 get { return keyGenerator; }
111 set { keyGenerator = value; }
114 [MonoTODO]
115 public MemberInfo MemberInfo {
116 get { throw new NotImplementedException (); }
119 public string Name {
120 get { return name; }
121 set { name = value; }
124 [MonoTODO]
125 public ObjectRelationship ObjectRelationship {
126 get { throw new NotImplementedException (); }
129 #endregion // Properties
133 #endif // NET_2_0