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