Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.DataPreprocessing/3.4/Content/DataCompletenessChartContent.cs @ 13986

Last change on this file since 13986 was 13656, checked in by ascheibe, 9 years ago

#2582 created branch for Hive Web Job Manager

File size: 807 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3
4namespace 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.