**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Data.ObjectSpaces / System.Data.ObjectSpaces.Schema / ObjectRelationship.cs
blob9d4aee7fbea54863adea8859d40c8804fff3f4ed
1 //
2 // System.Data.ObjectSpaces.Schema.ObjectRelationship.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;
35 namespace System.Data.ObjectSpaces.Schema {
36 public sealed class ObjectRelationship : IDomainConstraint
38 #region Fields
40 string name;
41 SchemaClass childClass;
42 SchemaMember childMember;
43 SchemaClass parentClass;
44 SchemaMember parentMember;
45 ObjectRelationshipType type;
46 bool isCascadeDelete;
48 #endregion // Fields
50 #region Constructors
52 [MonoTODO]
53 public ObjectRelationship (string name, SchemaClass parentClass, SchemaMember parentMember, SchemaClass childClass, SchemaMember childMember, ObjectRelationshipType type)
55 Name = name;
56 Type = type;
58 this.parentClass = parentClass;
59 this.parentMember = parentMember;
60 this.childClass = childClass;
61 this.childMember = childMember;
64 [MonoTODO]
65 public ObjectRelationship (string name, SchemaClass parentClass, SchemaMember parentMember, SchemaClass childClass, SchemaMember childMember, ObjectRelationshipType type, bool isCascadeDelete)
66 : this (name, parentClass, parentMember, childClass, childMember, type)
68 IsCascadeDelete = isCascadeDelete;
71 #endregion // Constructors
73 #region Properties
75 public SchemaClass ChildClass {
76 get { return childClass; }
79 public SchemaMember ChildMember {
80 get { return childMember; }
83 [MonoTODO]
84 public ObjectSchema DeclaringObjectSchema {
85 get { throw new NotImplementedException (); }
88 [MonoTODO]
89 public ExtendedPropertyCollection ExtendedProperties {
90 get { throw new NotImplementedException (); }
93 bool IDomainConstraint.CascadeDelete {
94 get { return IsCascadeDelete; }
97 [MonoTODO]
98 IDomainSchema IDomainConstraint.DomainSchema {
99 get { throw new NotImplementedException (); }
102 [MonoTODO]
103 IDomainFieldJoinCollection IDomainConstraint.FieldJoins {
104 get { throw new NotImplementedException (); }
107 [MonoTODO]
108 IDomainStructure IDomainConstraint.FromDomainStructure {
109 get { throw new NotImplementedException (); }
112 [MonoTODO]
113 IDomainStructure IDomainConstraint.ToDomainStructure {
114 get { throw new NotImplementedException (); }
117 public bool IsCascadeDelete {
118 get { return isCascadeDelete; }
119 set { isCascadeDelete = value; }
122 public string Name {
123 get { return name; }
124 set { name = value; }
128 public SchemaClass ParentClass {
129 get { return parentClass; }
132 public SchemaMember ParentMember {
133 get { return parentMember; }
136 public ObjectRelationshipType Type {
137 get { return type; }
138 set { type = value; }
141 #endregion // Properties
145 #endif // NET_2_0