Line | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.DataPreprocessing {
|
---|
5 | [Item("DataCompletenessChart", "Represents a datacompleteness chart.")]
|
---|
6 |
|
---|
7 | public class DataCompletenessChartContent : Item, IViewChartShortcut {
|
---|
8 |
|
---|
9 |
|
---|
10 | //public DataGridLogic DataGridLogic { get; private set; }
|
---|
11 | public SearchLogic SearchLogic { get; private set; }
|
---|
12 |
|
---|
13 | public DataCompletenessChartContent(SearchLogic searchLogic) {
|
---|
14 | SearchLogic = searchLogic;
|
---|
15 | }
|
---|
16 |
|
---|
17 | public DataCompletenessChartContent(DataCompletenessChartContent content, Cloner cloner)
|
---|
18 | : base(content, cloner) {
|
---|
19 | SearchLogic = content.SearchLogic;
|
---|
20 | }
|
---|
21 |
|
---|
22 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
23 | return new DataCompletenessChartContent(this, cloner);
|
---|
24 | }
|
---|
25 | }
|
---|
26 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.