**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Data.ObjectSpaces / System.Data.ObjectSpaces.Schema / SchemaClass.cs
blobdb519b10d950081cc2f6699b92784ddc9efb0d2c
1 //
2 // System.Data.ObjectSpaces.Schema.SchemaClass.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.Xml;
36 namespace System.Data.ObjectSpaces.Schema {
37 public sealed class SchemaClass : IDomainStructure
39 #region Fields
41 bool canInherit;
42 Type classType;
44 #endregion // Fields
46 #region Constructors
48 [MonoTODO]
49 public SchemaClass ()
53 [MonoTODO]
54 public SchemaClass (Type classType)
56 ClassType = classType;
59 #endregion // Constructors
61 #region Properties
63 public bool CanInherit {
64 get { return canInherit; }
65 set { canInherit = value; }
68 public Type ClassType {
69 get { return classType; }
70 set { classType = value; }
73 [MonoTODO]
74 public ObjectSchema DeclaringObjectSchema {
75 get { throw new NotImplementedException (); }
78 [MonoTODO]
79 public ExtendedPropertyCollection ExtendedProperties {
80 get { throw new NotImplementedException (); }
83 [MonoTODO]
84 IDomainSchema IDomainStructure.DomainSchema {
85 get { throw new NotImplementedException (); }
88 [MonoTODO]
89 string IDomainStructure.Select {
90 get { throw new NotImplementedException (); }
93 [MonoTODO]
94 public SchemaMemberCollection SchemaMembers {
95 get { throw new NotImplementedException (); }
98 #endregion // Properties
100 #region Methods
102 [MonoTODO]
103 IDomainField IDomainStructure.GetDomainField (string select, IXmlNamespaceResolver namespaces)
105 throw new NotImplementedException ();
108 #endregion // Methods
112 #endif // NET_2_0