2003-03-27 Ville Palo <vi64pa@kolumbus.fi>
[mono.git] / mcs / class / System.Data / System.Data / DataRowBuilder.cs
1 //
2 // System.Data.DataRowBuilder
3 //
4 // Author:
5 //   Tim Coleman <tim@timcoleman.com>
6 //
7 // Copyright (C) 2002 Tim Coleman
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// A supporting class that exists solely to support
16         /// DataRow and DataTable
17         /// Implementation of something meaningful will follow.
18         /// Presumably, what that is will become apparent when
19         /// constructing DataTable and DataRow.
20         /// </summary>
21
22         public class DataRowBuilder 
23         {
24                 #region Fields
25                 
26                 private DataTable table;
27
28                 #endregion
29
30                 #region Constructors
31
32                 // DataRowBuilder on .NET takes 3 arguments, a
33                 // DataTable and two Int32.  For consistency, this
34                 // class will also take those arguments.
35
36                 internal DataRowBuilder (DataTable table, Int32 x, Int32 y)
37                 {
38                         this.table = table;
39                 }
40
41                 #endregion
42
43                 #region Properties
44
45                 protected internal DataTable Table {
46                         get { return table; }
47                 }
48
49                 #endregion
50
51         }
52 }