1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
23 |
|
---|
24 | namespace HeuristicLab.DataImporter.DbExplorer.Interfaces {
|
---|
25 | [StorableClass]
|
---|
26 | public class DbColumn {
|
---|
27 | [StorableConstructor]
|
---|
28 | protected DbColumn(bool deserializing) : base() { }
|
---|
29 |
|
---|
30 | public DbColumn(string columnName, string sqlDataType) {
|
---|
31 | this.columnName = columnName;
|
---|
32 | this.sqlDataType = sqlDataType;
|
---|
33 | }
|
---|
34 |
|
---|
35 | [Storable]
|
---|
36 | private string columnName;
|
---|
37 | public string ColumnName {
|
---|
38 | get { return this.columnName; }
|
---|
39 | set { this.columnName = value; }
|
---|
40 | }
|
---|
41 |
|
---|
42 | [Storable]
|
---|
43 | private string sqlDataType;
|
---|
44 | public string SqlDataType {
|
---|
45 | get { return this.sqlDataType; }
|
---|
46 | set { this.sqlDataType = value; }
|
---|
47 | }
|
---|
48 |
|
---|
49 | [Storable]
|
---|
50 | private string minValue;
|
---|
51 | public string MinValue {
|
---|
52 | get { return this.minValue; }
|
---|
53 | set { this.minValue = value; }
|
---|
54 | }
|
---|
55 |
|
---|
56 | [Storable]
|
---|
57 | private string maxValue;
|
---|
58 | public string MaxValue {
|
---|
59 | get { return this.maxValue; }
|
---|
60 | set { this.maxValue = value; }
|
---|
61 | }
|
---|
62 |
|
---|
63 | [Storable]
|
---|
64 | private string likeValue;
|
---|
65 | public string LikeValue {
|
---|
66 | get { return this.likeValue; }
|
---|
67 | set { this.likeValue = value; }
|
---|
68 | }
|
---|
69 |
|
---|
70 | [Storable]
|
---|
71 | private bool filter;
|
---|
72 | public bool FilterColumn {
|
---|
73 | get { return this.filter; }
|
---|
74 | set { this.filter = value; }
|
---|
75 | }
|
---|
76 |
|
---|
77 | [Storable]
|
---|
78 | private bool selected;
|
---|
79 | public bool Selected {
|
---|
80 | get { return selected; }
|
---|
81 | set { selected = value; }
|
---|
82 | }
|
---|
83 |
|
---|
84 | public override string ToString() {
|
---|
85 | return this.columnName + "<" + this.sqlDataType + ">";
|
---|
86 | }
|
---|
87 | }
|
---|
88 | }
|
---|