Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2559

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