**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Data.ObjectSpaces / System.Data.ObjectSpaces.Schema / ObjectRelationshipCollection.cs
blob4a1577cc7569141b71db56196c35f0b31c4a324e
1 //
2 // System.Data.ObjectSpaces.Schema.ObjectRelationshipCollection.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.Collections;
35 namespace System.Data.ObjectSpaces.Schema {
36 public class ObjectRelationshipCollection : CollectionBase
38 #region Properties
40 [MonoTODO]
41 public ObjectRelationship this [string name] {
42 get { throw new NotImplementedException (); }
45 [MonoTODO]
46 public ObjectRelationship this [int index] {
47 get { return (ObjectRelationship) List [index]; }
50 #endregion // Properties
52 #region Methods
54 public void Add (ObjectRelationship relationship)
56 Insert (Count, relationship);
59 public bool Contains (ObjectRelationship relationship)
61 return List.Contains (relationship);
64 [MonoTODO]
65 public ObjectRelationship[] GetChildRelationships (Type type)
67 throw new NotImplementedException ();
70 [MonoTODO]
71 public ObjectRelationship[] GetParentRelationships (Type type)
73 throw new NotImplementedException ();
76 public int IndexOf (ObjectRelationship relationship)
78 return List.IndexOf (relationship);
81 public void Insert (int index, ObjectRelationship relationship)
83 List.Insert (index, relationship);
86 [MonoTODO]
87 protected override void OnInsert (int index, object value)
89 throw new NotImplementedException ();
92 [MonoTODO]
93 protected override void OnRemove (int index, object value)
95 throw new NotImplementedException ();
98 public void Remove (ObjectRelationship relation)
100 List.Remove (relation);
103 #endregion // Methods
107 #endif // NET_2_0