[runtime] Overwrite stacktrace for exception on re-throw. Fixes #1856.
[mono.git] / mcs / class / System.Data / System.Data / DataViewSetting.cs
1 //
2 // System.Data.DataViewSetting
3 //
4 // Authors:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Tim Coleman (tim@timcoleman.com)
7 //   Atsushi Enomoto (atsushi@ximian.com)
8 //
9 // (C) Ximian, Inc. 2002
10 // Copyright (C) Tim Coleman, 2002
11 // Copyright (C) 2005 Novell Inc,
12 //
13
14 //
15 // Copyright (C) 2004-05 Novell, Inc (http://www.novell.com)
16 //
17 // Permission is hereby granted, free of charge, to any person obtaining
18 // a copy of this software and associated documentation files (the
19 // "Software"), to deal in the Software without restriction, including
20 // without limitation the rights to use, copy, modify, merge, publish,
21 // distribute, sublicense, and/or sell copies of the Software, and to
22 // permit persons to whom the Software is furnished to do so, subject to
23 // the following conditions:
24 // 
25 // The above copyright notice and this permission notice shall be
26 // included in all copies or substantial portions of the Software.
27 // 
28 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 //
36
37 using System.ComponentModel;
38
39 namespace System.Data
40 {
41         /// <summary>
42         /// Represents the default settings for ApplyDefaultSort, DataViewManager, RowFilter, RowStateFilter, Sort, and Table for DataViews created from the DataViewManager.
43         /// </summary>
44         [TypeConverterAttribute (typeof (ExpandableObjectConverter))]
45         public class DataViewSetting
46         {
47                 #region Fields
48
49                 bool applyDefaultSort;
50                 DataViewManager dataViewManager;
51                 string rowFilter = String.Empty;
52                 DataViewRowState rowStateFilter = DataViewRowState.CurrentRows;
53                 string sort = String.Empty;
54                 DataTable dataTable;
55
56                 #endregion // Fields
57
58                 #region Constructors
59
60                 internal DataViewSetting (DataViewManager manager, DataTable table)
61                 {
62                         dataViewManager = manager;
63                         dataTable = table;
64                 }
65
66                 #endregion // Constructors
67
68                 #region Properties
69                 
70                 public bool ApplyDefaultSort {
71                         get { return applyDefaultSort; }
72                         set { applyDefaultSort = value; }
73                 }
74
75                 [Browsable (false)]
76                 public DataViewManager DataViewManager {
77                         get { return dataViewManager; }
78                 }
79
80                 public string RowFilter {
81                         get { return rowFilter; }
82                         set { rowFilter = value; }
83                 }
84
85                 public DataViewRowState RowStateFilter {
86                         get { return rowStateFilter; }
87                         set { rowStateFilter = value; }
88                 }
89
90                 public string Sort {
91                         get { return sort; }
92                         set { sort = value; }
93                 }
94
95                 [Browsable (false)]
96                 public DataTable Table {
97                         get { return dataTable; }
98                 }
99
100                 #endregion // Properties
101         }
102 }