imported everything from my branch (which is slightly harmless).
[mono.git] / mcs / class / corlib / System.Collections.ObjectModel / KeyedCollection.cs
1 // -*- Mode: csharp; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2 //
3 // System.Collections.ObjectModel.KeyedCollection
4 //
5 // Author:
6 //    Zoltan Varga (vargaz@gmail.com)
7 //
8 // (C) 2005 Novell, Inc.
9 //
10
11 //
12 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33
34 #if NET_2_0
35 using System;
36 using System.Collections.Generic;
37 using System.Runtime.InteropServices;
38
39 namespace System.Collections.ObjectModel
40 {
41         [ComVisible(false)]
42         [Serializable]
43         public abstract class KeyedCollection<TKey, TItem> : Collection<TItem>
44         {
45                 public bool Contains (TKey key)
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 public bool Remove (TKey key)
51                 {
52                         throw new NotImplementedException ();
53                 }
54
55                 public IEqualityComparer<TKey> Comparer {
56                         get {
57                                 throw new NotImplementedException ();
58                         }
59                 }
60
61                 public TItem this[TKey key] {
62                         get {
63                                 throw new NotImplementedException ();
64                         }
65                 }
66
67                 protected void ChangeItemKey (TItem item, TKey newKey)
68                 {
69                         throw new NotImplementedException ();
70                 }
71
72                 protected void ClearItems ()
73                 {
74                         throw new NotImplementedException ();
75                 }
76
77                 protected abstract TKey GetKeyForItem (TItem item);
78
79                 protected virtual void InsertItem (int index, TItem item)
80                 {
81                         throw new NotImplementedException ();
82                 }
83
84                 protected virtual void RemoveItem (int index)
85                 {
86                         throw new NotImplementedException ();
87                 }
88
89                 protected virtual void SetItem (int index, TItem item)
90                 {
91                         throw new NotImplementedException ();
92                 }
93
94                 protected IDictionary<TKey, TItem> Dictionary {
95                         get {
96                                 throw new NotImplementedException ();
97                         }
98                 }
99         }
100 }
101 #endif