Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataPreprocessing/3.4/Content/DataCompletenessChartContent.cs @ 13508

Last change on this file since 13508 was 13508, checked in by pfleck, 8 years ago

#2559

  • Enabled type selection for creating/importing/exporting/applying.
  • Deleted unnecessary interfaces.
  • Reorganized source files of DataPreprocessing.
File size: 973 bytes
Line 
1using System.Drawing;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4
5namespace HeuristicLab.DataPreprocessing {
6  [Item("DataCompletenessChart", "Represents a datacompleteness chart.")]
7
8  public class DataCompletenessChartContent : Item, IViewChartShortcut {
9    public static new Image StaticItemImage {
10      get { return HeuristicLab.Common.Resources.VSImageLibrary.EditBrightnessContrast; }
11    }
12
13    //public DataGridLogic DataGridLogic { get; private set; }
14    public SearchLogic SearchLogic { get; private set; }
15
16    public DataCompletenessChartContent(SearchLogic searchLogic) {
17      SearchLogic = searchLogic;
18    }
19
20    public DataCompletenessChartContent(DataCompletenessChartContent content, Cloner cloner)
21      : base(content, cloner) {
22      SearchLogic = content.SearchLogic;
23    }
24
25    public override IDeepCloneable Clone(Cloner cloner) {
26      return new DataCompletenessChartContent(this, cloner);
27    }
28  }
29}
Note: See TracBrowser for help on using the repository browser.