Added Debug.cs to the build.
[mono.git] / mcs / class / System.Data / ITableMappingCollection.cs
1 //
2 // System.Data.ITableMappingCollection.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Contains a collection of TableMapping objects, and is implemented by the DataTableMappingCollection, which is used in common by .NET data providers.
14         /// </summary>
15         public interface ITableMappingCollection : IList, ICollection, IEnumerable
16         {
17                 ITableMapping Add(string sourceTableName, string dataSetTableName)
18                 {
19                 }
20                 
21                 bool Contains(string sourceTableName)
22                 {
23                 }
24                 
25                 ITableMapping GetByDataSetTable(string dataSetTableName)
26                 {
27                 }
28                 
29                 int IndexOf(string sourceTableName)
30                 {
31                 }
32                 
33                 void RemoveAt(string sourceTableName)
34                 {
35                 }
36                 
37                 object this[string index]
38                 {
39                         get
40                         {
41                         }
42                         set
43                         {
44                         }
45                 }
46         }
47 }